diff --git a/ChangeLog b/ChangeLog index 98d7ebba29..19d8159437 100644 --- a/ChangeLog +++ b/ChangeLog @@ -69,6 +69,7 @@ phpMyAdmin - ChangeLog + rfe #1531 Cant use external config file + rfe #1552 CSV import: Allow "Columns escaped with" to be optional + rfe #1561 Being able to use multiple servers at the same time when using cookie auth ++ rfe #1603 select structure or data for each table when exporting 4.4.11.0 (not yet released) - bug Missing selected/entered values when editing active options in visual query builder diff --git a/db_export.php b/db_export.php index 40831f4ba0..f33b97266d 100644 --- a/db_export.php +++ b/db_export.php @@ -37,21 +37,25 @@ if ($num_tables < 1) { exit; } // end if -$multi_values = '
';
$html .= __(
@@ -760,6 +771,7 @@ function PMA_getHtmlForExportOptions(
global $cfg;
$html = PMA_getHtmlForExportOptionHeader($export_type, $db, $table);
$html .= PMA_getHtmlForExportOptionsMethod();
+ $html .= PMA_getHtmlForExportOptionsFormatDropdown($export_list);
$html .= PMA_getHtmlForExportOptionsSelection($export_type, $multi_values);
$tableLength = /*overload*/mb_strlen($table);
diff --git a/libraries/export.lib.php b/libraries/export.lib.php
index 23bc0ba151..d219a33991 100644
--- a/libraries/export.lib.php
+++ b/libraries/export.lib.php
@@ -491,10 +491,20 @@ function PMA_getHtmlForDisplayedExportHeader($export_type, $db, $table)
// Convert the multiple select elements from an array to a string
if ($export_type == 'server' && isset($_REQUEST['db_select'])) {
$_REQUEST['db_select'] = implode(",", $_REQUEST['db_select']);
- } elseif ($export_type == 'database'
- && isset($_REQUEST['table_select'])
- ) {
- $_REQUEST['table_select'] = implode(",", $_REQUEST['table_select']);
+ } elseif ($export_type == 'database') {
+ if (isset($_REQUEST['table_select'])) {
+ $_REQUEST['table_select'] = implode(",", $_REQUEST['table_select']);
+ }
+ if (isset($_REQUEST['table_structure'])) {
+ $_REQUEST['table_structure'] = implode(",", $_REQUEST['table_structure']);
+ } else if (empty($_REQUEST['structure_or_data_forced'])) {
+ $_REQUEST['table_structure'] = '';
+ }
+ if (isset($_REQUEST['table_data'])) {
+ $_REQUEST['table_data'] = implode(",", $_REQUEST['table_data']);
+ } else if (empty($_REQUEST['structure_or_data_forced'])) {
+ $_REQUEST['table_data'] = '';
+ }
}
foreach ($_REQUEST as $name => $value) {
@@ -546,9 +556,10 @@ function PMA_exportServer(
) {
$tables = $GLOBALS['dbi']->getTables($current_db);
PMA_exportDatabase(
- $current_db, $tables, $whatStrucOrData, $export_plugin, $crlf,
- $err_url, $export_type, $do_relation, $do_comments, $do_mime,
- $do_dates, $aliases, $separate_files == 'database' ? $separate_files : ''
+ $current_db, $tables, $whatStrucOrData, $tables, $tables,
+ $export_plugin, $crlf, $err_url, $export_type, $do_relation,
+ $do_comments, $do_mime, $do_dates, $aliases,
+ $separate_files == 'database' ? $separate_files : ''
);
if ($separate_files == 'server') {
PMA_saveObjectInBuffer($current_db);
@@ -563,6 +574,8 @@ function PMA_exportServer(
* @param string $db the database to export
* @param array $tables the tables to export
* @param string $whatStrucOrData structure or data or both
+ * @param array $table_structure whether to export structure for each table
+ * @param array $table_data whether to export data for each table
* @param ExportPlugin $export_plugin the selected export plugin
* @param string $crlf end of line character(s)
* @param string $err_url the URL in case of error
@@ -577,9 +590,9 @@ function PMA_exportServer(
* @return void
*/
function PMA_exportDatabase(
- $db, $tables, $whatStrucOrData, $export_plugin, $crlf, $err_url,
- $export_type, $do_relation, $do_comments, $do_mime, $do_dates,
- $aliases, $separate_files
+ $db, $tables, $whatStrucOrData, $table_structure, $table_data,
+ $export_plugin, $crlf, $err_url, $export_type, $do_relation,
+ $do_comments, $do_mime, $do_dates, $aliases, $separate_files
) {
$db_alias = !empty($aliases[$db]['alias'])
? $aliases[$db]['alias'] : '';
@@ -630,8 +643,9 @@ function PMA_exportDatabase(
if ($is_view) {
$views[] = $table;
}
- if ($whatStrucOrData == 'structure'
- || $whatStrucOrData == 'structure_and_data'
+ if (($whatStrucOrData == 'structure'
+ || $whatStrucOrData == 'structure_and_data')
+ && in_array($table, $table_structure)
) {
// for a view, export a stand-in definition of the table
// to resolve view dependencies (only when it's a single-file export)
@@ -681,6 +695,7 @@ function PMA_exportDatabase(
// if this is a view or a merge table, don't export data
if (($whatStrucOrData == 'data'
|| $whatStrucOrData == 'structure_and_data')
+ && in_array($table, $table_data)
&& ! ($is_view || PMA_Table::isMerge($db, $table))
) {
$local_query = 'SELECT * FROM ' . PMA_Util::backquote($db)
@@ -700,6 +715,7 @@ function PMA_exportDatabase(
// triggers can modify already imported tables)
if (isset($GLOBALS['sql_create_trigger']) && ($whatStrucOrData == 'structure'
|| $whatStrucOrData == 'structure_and_data')
+ && in_array($table, $table_structure)
) {
if (! $export_plugin->exportStructure(
$db, $table, $crlf, $err_url, 'triggers',
diff --git a/libraries/plugins/import/ImportOds.class.php b/libraries/plugins/import/ImportOds.class.php
index ca9d3a22a3..ed5230142a 100644
--- a/libraries/plugins/import/ImportOds.class.php
+++ b/libraries/plugins/import/ImportOds.class.php
@@ -322,9 +322,10 @@ class ImportOds extends ImportPlugin
/**
* Bring accumulated rows into the corresponding table
*/
- $num_tbls = count($tables);
- for ($i = 0; $i < $num_tbls; ++$i) {
- for ($j = 0; $j < count($rows); ++$j) {
+ $num_tables = count($tables);
+ for ($i = 0; $i < $num_tables; ++$i) {
+ $num_rows = count($rows);
+ for ($j = 0; $j < $num_rows; ++$j) {
if (strcmp($tables[$i][TBL_NAME], $rows[$j][TBL_NAME])) {
continue;
}
diff --git a/libraries/plugins/import/ImportXml.class.php b/libraries/plugins/import/ImportXml.class.php
index 6301aa43d7..5f0812b8a8 100644
--- a/libraries/plugins/import/ImportXml.class.php
+++ b/libraries/plugins/import/ImportXml.class.php
@@ -245,7 +245,8 @@ class ImportXml extends ImportPlugin
$tbl_attr = $v1->attributes();
$isInTables = false;
- for ($i = 0; $i < count($tables); ++$i) {
+ $num_tables = count($tables);
+ for ($i = 0; $i < $num_tables; ++$i) {
if (! strcmp($tables[$i][TBL_NAME], (string)$tbl_attr['name'])) {
$isInTables = true;
break;
@@ -277,9 +278,10 @@ class ImportXml extends ImportPlugin
/**
* Bring accumulated rows into the corresponding table
*/
- $num_tbls = count($tables);
- for ($i = 0; $i < $num_tbls; ++$i) {
- for ($j = 0; $j < count($rows); ++$j) {
+ $num_tables = count($tables);
+ for ($i = 0; $i < $num_tables; ++$i) {
+ $num_rows = count($rows);
+ for ($j = 0; $j < $num_rows; ++$j) {
if (! strcmp($tables[$i][TBL_NAME], $rows[$j][TBL_NAME])) {
if (! isset($tables[$i][COL_NAMES])) {
$tables[$i][] = $rows[$j][COL_NAMES];
diff --git a/po/af.po b/po/af.po
index 5f287bf513..15e2f1bb2f 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-28 11:05+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Wys alles"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Lines terminated by"
msgid "Original length"
msgstr "Lyne beeindig deur"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Export"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Kies Tabelle"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Geen databasisse"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Kolom name"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Verander wagwoord"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
#, fuzzy
msgid "Generate"
msgstr "Voortgebring deur"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Verander wagwoord"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Ma"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Wys alles"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Indexes"
msgid "Hide Panel"
msgstr "Indekse"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Wys ruitgebied"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Indexes"
msgid "Link with main panel"
msgstr "Indekse"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Indexes"
msgid "Unlink from main panel"
msgstr "Indekse"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
msgid "tables"
msgstr "Tabel"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
msgid "views"
msgstr "Velde"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Reset"
msgid "events"
msgstr "Herstel"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "Funksie"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2607,135 +2651,135 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Geen databasisse"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Bediener weergawe"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "Bediener Keuse"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Algemene verwantskap funksies"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "Wys tabelle"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignoreer"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Wys hierdie navraag weer hier"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Wil jy regtig "
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Tabel kommentaar"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "SQL-stelling"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorige"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2743,95 +2787,95 @@ msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
msgid "Today"
msgstr "totaal"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Biner"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mei"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2839,78 +2883,78 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Des"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "So"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fr"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2918,199 +2962,199 @@ msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wo"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Geen"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in gebruik"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "Records"
msgid "Second"
msgstr "Rekords"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Add new field"
msgid "Please fix this field"
msgstr "Voeg 'n nuwe veld by"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please select a database"
msgid "Please enter a valid date"
msgstr "Kies asb. 'n databasis"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please choose a page to edit"
msgid "Please enter a valid date or time"
msgstr "Kies asb. 'n bladsy om te verander"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3181,16 +3225,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -3211,7 +3255,7 @@ msgid "Requery"
msgstr "in navraag"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3421,7 +3465,7 @@ msgid "Count:"
msgstr "Kolom name"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3632,25 +3676,25 @@ msgstr "Aantoon van boekmerk"
msgid "Delete bookmark"
msgstr "Soek"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3731,6 +3775,16 @@ msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")."
msgid "Inside tables:"
msgstr "Binne tabel(le):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Kies Alles"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Selekteer Niks"
+
#: libraries/DbSearch.class.php:455
#, fuzzy
#| msgid "Inside table(s):"
@@ -3799,7 +3853,7 @@ msgid "All"
msgstr "Alle"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
@@ -4114,7 +4168,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -4125,34 +4179,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktuur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4249,8 +4282,8 @@ msgstr "Voeg By/Verwyder Veld Kolomme"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "databasisse"
@@ -4368,7 +4401,7 @@ msgid "Recent"
msgstr "Herstel"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
msgid "Favorite tables"
msgstr "Skep 'n nuwe bladsy"
@@ -4440,17 +4473,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-#, fuzzy
-msgid "Tables"
-msgstr "Tabel"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4971,7 +4993,7 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL het gepraat: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Verduidelik SQL"
@@ -4988,7 +5010,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Sonder PHP Kode"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Skep PHP Kode"
@@ -5107,17 +5129,6 @@ msgstr ""
msgid "Rows"
msgstr "Rye"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5293,7 +5304,7 @@ msgstr "Bediener Keuse"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5301,24 +5312,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5561,7 +5572,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5967,7 +5978,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -5977,7 +5988,7 @@ msgstr "Stellings"
msgid "Save as file"
msgstr "Stoor as leer (file)"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Karakterstel van die leer:"
@@ -6005,17 +6016,17 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Velde omring met"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6033,16 +6044,16 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Lyne beeindig deur"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6119,7 +6130,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -6138,8 +6149,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr "Omring tabel en veldname met backquotes"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6259,15 +6270,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV data"
@@ -6296,7 +6307,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Databasis statistieke"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6344,168 +6355,179 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+msgid "Navigation tree"
+msgstr "Tabel kommentaar"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Show grid"
+msgid "Customize the navigation tree."
+msgstr "Wys ruitgebied"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Databasis statistieke"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Databasis statistieke"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Indexes"
msgid "Main panel"
msgstr "Indekse"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Bladsy nommer:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Dokumentasie"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "Dokumentasie"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "SQL-stelling"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "SQL-stelling"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "SQL-stelling"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "databasisse"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6513,198 +6535,198 @@ msgstr ""
msgid "Table structure"
msgstr "databasisse"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Tabel"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display relational schema"
msgstr "Vertoon PDF skema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Add new field"
msgid "Text fields"
msgstr "Voeg 'n nuwe veld by"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Add new field"
msgid "Customize text input fields."
msgstr "Voeg 'n nuwe veld by"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Column names"
msgid "Column names in first row"
msgstr "Kolom name"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6712,1116 +6734,1170 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Wys ruitgebied"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Show logo in navigation panel."
msgstr "Tabel kommentaar"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
msgid "Enable navigation tree expansion"
msgstr "Tabel kommentaar"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Wys tabelle"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Wys ruitgebied"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Wys ruitgebied"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Wys ruitgebied"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Wys prosesse"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Wys ruitgebied"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Wys ruitgebied"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analiseer tabel"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Verander tabel sorteer volgens"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
msgid "Table navigation bar"
msgstr "Tabel kommentaar"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Hernoem tabel na"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "'n primere sleutel is bygevoeg op %s."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
msgid "Relational display"
msgstr "Relasie uitsig"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Databasis statistieke"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentasie"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Enige gasheer (host)"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Enige gasheer (host)"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Geen databasisse"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Moenie die wagwoord verander nie"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Databasis"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiseer tabel"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
msgid "Favorites table"
msgstr "Skep 'n nuwe bladsy"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Herstel tabel"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr "Limits the number of new connections the user may open per hour."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Kolom Kommentaar word vertoon"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Stellings"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
msgid "Automatically create versions"
msgstr "Bediener weergawe"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Gebruik Tabelle"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabel kommentaar"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Wys PHP informasie"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
msgid "Show field types"
msgstr "Wys tabelle"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Wys ruitgebied"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL-stelling"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Ry Statistiek"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Verstekwaarde (default)"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7829,52 +7905,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7882,84 +7958,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Gebruiker Naam:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Wagwoord"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -7985,47 +8061,47 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentasie"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
#, fuzzy
msgid "Database export options"
msgstr "Databasis statistieke"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV vir M$ Excel data"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8056,7 +8132,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -8132,7 +8208,7 @@ msgstr "Skep 'n nuwe bladsy"
msgid "Number of columns"
msgstr "Hoeveelheid rye per bladsy"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8186,64 +8262,64 @@ msgstr "Tabel"
msgid "Format:"
msgstr "Formaat"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Rye"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8251,82 +8327,94 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Karakterstel van die leer:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"ge-zip\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"ge-gzip\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Stoor as leer (file)"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Skep 'n nuwe tabel op databasis %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export"
+msgid "Export tables as separate files"
+msgstr "Export"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Stoor as leer (file)"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Kies Tabelle"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Kies Tabelle"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database"
msgid "New database name"
msgstr "Databasis"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Geen tabelle"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Kolom name"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -8893,7 +8981,7 @@ msgid "Create an index on %s columns"
msgstr "Skep 'n indeks op %s kolomme"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -9039,11 +9127,6 @@ msgstr "Fr"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Stuur"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Replace table data with file"
@@ -9262,24 +9345,30 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Kolom name"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr ""
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "Funksie"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr ""
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
msgid "Tables:"
msgstr "Tabel"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -9305,39 +9394,39 @@ msgstr "Tabel kommentaar"
msgid "Reload navigation panel"
msgstr "Tabel kommentaar"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Verander tabel sorteer volgens"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Stoor as leer (file)"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Verander tabel sorteer volgens"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9374,7 +9463,7 @@ msgstr ""
msgid "Database operations"
msgstr "Databasis statistieke"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10605,26 +10694,26 @@ msgstr "Kolom name"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10969,60 +11058,60 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Veranderinge is gestoor"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Leer kon nie gelees word nie"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
msgid "Internal relation has been added."
msgstr "Algemene verwantskap funksies"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Leer kon nie gelees word nie"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Veranderinge is gestoor"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Leer kon nie gelees word nie"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Leer kon nie gelees word nie"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
msgid "Internal relation has been removed."
msgstr "Algemene verwantskap funksies"
@@ -11118,54 +11207,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Hernoem tabel na"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "geen Beskrywing"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11937,7 +12032,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
msgid "Current Server:"
msgstr "Bediener weergawe"
@@ -16993,9 +17088,6 @@ msgstr ""
#~ msgid "Reset"
#~ msgstr "Herstel"
-#~ msgid "Show processes"
-#~ msgstr "Wys prosesse"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Herstel"
diff --git a/po/ar.po b/po/ar.po
index 922ef8d713..f8d1c11ca4 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-03-27 10:17+0200\n"
"Last-Translator: Ahmed Saleh Abd El-Raouf Ismae
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "عرض الكل"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Linestring"
msgid "Original length"
msgstr "منحنى"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "ألغاء"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "ألغي"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "نجاح"
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "إفتراضيات الإستيراد"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "إسقاط الملفات هنا"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "اختر الجداول"
-#: js/messages.php:502
+#: js/messages.php:503
#, fuzzy
#| msgid ""
#| "You can also edit most columns
by clicking directly on their content."
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى."
-#: js/messages.php:505
+#: js/messages.php:506
#, fuzzy
#| msgid ""
#| "You can also edit most columns
by clicking directly on their content."
msgid "You can also edit most values
by clicking directly on them."
msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى."
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
msgstr "ذهاب للرابط"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Copy column name"
msgid "Copy column name."
msgstr "أنسخ اسم العمود"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "توليد كلمة مرور"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "توليد"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "تغيير كلمة المرور"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "أكثر"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "عرض الكل"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Hide indexes"
msgid "Hide Panel"
msgstr "إخفاء الفهارس"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show hidden navigation tree items."
msgstr "عرض الشعار في الإطار الأيسر"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main frame"
msgid "Link with main panel"
msgstr "تخصيص الإطار الرئيسي"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main frame"
msgid "Unlink from main panel"
msgstr "تخصيص الإطار الرئيسي"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "جداول"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "عرض"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Processes"
msgid "procedures"
msgstr "عمليات"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "حدث"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Function"
msgid "functions"
msgstr "دالة"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2555,482 +2598,482 @@ msgstr ""
"هو %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", آخر إصدار مستقر:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "محدثة"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "إنشاء عرض"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "تغيير الإعدادات"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Import files"
msgid "Show Report Details"
msgstr "استورد الملفات"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "تجاهل"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "أعرض هذا الاستعلام هنا مرة أخرى"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "هل تريد فعلاً تنفيذ \"%s\"؟"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Issued queries"
msgid "%s queries executed %s times in %s seconds."
msgstr "إستعلامات صادرة"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "تعليقات الجدول"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "إخفاء نتائج البحث"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "سابق"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "التالي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "اليوم"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "يناير"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "فبراير"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "مارس"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "أبريل"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "مايو"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "يونيو"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "يوليو"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "أغسطس"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "سبتمبر"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "أكتوبر"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "نوفمبر"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "ديسمبر"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "يناير"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "فبراير"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "أبريل"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "مايو"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "يونيو"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "يوليو"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "أغسطس"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "سبتمبر"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "أكتوبر"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "نوفمبر"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "ديسمبر"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "الأحد"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "الإثنين"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "الثلاثاء"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "الأربعاء"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "الخميس"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "الجمعة"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "السبت"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "الأحد"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "الإثنين"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "الثلاثاء"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "الأربعاء"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "الخميس"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "الجمعة"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "السبت"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "الأحد"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "الإثنين"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "الثلاثاء"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "الأربعاء"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "الخميس"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "الجمعة"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "السبت"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "الأسبوع"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "التقويم-الشهر-السنة"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "لا شيء"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "الساعة"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "الدقيقة"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "الثانية"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "استخدم حقل نص"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "رقم منفذ غير صحيح"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3104,16 +3147,16 @@ msgstr "لكل ساعة"
msgid "per day"
msgstr "يومياً"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "ملف الإعدادت (%s) غير قابل للقراءة."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينبغى أن يكون قابل للكتابة!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "حجم الخط"
@@ -3134,7 +3177,7 @@ msgid "Requery"
msgstr "في الاستعلام"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3360,7 +3403,7 @@ msgid "Count:"
msgstr "عمود"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3571,25 +3614,25 @@ msgstr "عرض العلامة المرجعية"
msgid "Delete bookmark"
msgstr "بحث في الجدول"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "التفاصيل…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3673,6 +3716,16 @@ msgstr "الكلمات مفصولة بمسافة (\" \")."
msgid "Inside tables:"
msgstr "داخل الجداول:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "تحديد الكل"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "عدم تحديد الكل"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "داخل العمود:"
@@ -3730,7 +3783,7 @@ msgid "All"
msgstr "الكل"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "عدد الأسطر:"
@@ -4045,7 +4098,7 @@ msgid ""
msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "خادم"
@@ -4056,34 +4109,13 @@ msgstr "خادم"
msgid "View"
msgstr "عرض"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "بناء"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4180,8 +4212,8 @@ msgstr "عواميد منطقة النص"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "قاعدة بيانات"
@@ -4308,7 +4340,7 @@ msgid "Recent"
msgstr "إعادة تعيين"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4385,16 +4417,6 @@ msgstr ""
msgid "Sorting"
msgstr "فرز"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "جداول"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4920,7 +4942,7 @@ msgstr "كبير: %s%s"
msgid "MySQL said: "
msgstr "MySQL قال: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "شرح SQL"
@@ -4937,7 +4959,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "بدون كود PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "أنشئ كود PHP"
@@ -5056,17 +5078,6 @@ msgstr "إستعمل هذه القيمة"
msgid "Rows"
msgstr "صفوف"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "بيانات"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5237,7 +5248,7 @@ msgstr "خادم"
msgid "Invalid authentication method set in configuration:"
msgstr "اسلوب مصادقة غير صحيح في الإعدادات:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5245,24 +5256,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "عليك الترقية إلى %s%s أو لاحقا."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "إستغلال محتمل"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "الكشف عن مفتاح رقمي"
@@ -5507,7 +5518,7 @@ msgid "Set value: %s"
msgstr "تعيين القيمة: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "إستعادة القيمة الإفتراضية"
@@ -5956,7 +5967,7 @@ msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: ل
msgid "Maximum execution time"
msgstr "وقت التنفيذ الأقصى"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -5966,7 +5977,7 @@ msgstr "أوامر"
msgid "Save as file"
msgstr "حفظ كملف"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "مجموعة الأحرف للملف"
@@ -5993,17 +6004,17 @@ msgstr "الضغط"
msgid "Put columns names in the first row"
msgstr "ضع أسماء الحقول في السطر الأول"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Columns enclosed with:"
msgid "Columns enclosed with"
msgstr "حقل محاط بـ"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6023,16 +6034,16 @@ msgstr "استبدل NULL بـ"
msgid "Remove CRLF characters within columns"
msgstr "حذف CRLF من الأعمدة"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "خطوط تنتهي بـ"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6104,7 +6115,7 @@ msgid "Save on server"
msgstr "حفظ في الخادم"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "خزن على الملفات الموجودة"
@@ -6121,8 +6132,8 @@ msgstr "أضف قيمة AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "محاصرة أسماء الجداول و العواميد ب \"`\""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "وضع توافق SQL"
@@ -6251,17 +6262,17 @@ msgid "Customize browse mode."
msgstr "تخصيص وضع الإستعراض"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "تخصيص الخيارات الإفتراضية"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "سي إس في"
@@ -6295,7 +6306,7 @@ msgstr "إفتراضيات التصدير"
msgid "Customize default export options."
msgstr "تخصيص خيارات التصدير الإفتراضي"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "مميزات"
@@ -6352,58 +6363,70 @@ msgstr "إطار التصفح"
msgid "Customize appearance of the navigation panel."
msgstr "تخصيص مظهر إطار التصفح"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation frame"
+msgid "Navigation tree"
+msgstr "إطار التصفح"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation frame"
+msgid "Customize the navigation tree."
+msgstr "تخصيص اطار التصفح"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "خوادم"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "خيارات عرض الخوادم"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "خيارات عرض الجداول"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "الإطار الرئيسي"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "مايكروسوفت أوفيس"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "الإعدادات الرئيسية الأخرى"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "الإعدادات التي لاتناسب في أي مكان آخر"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "عناوين الصفحة"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "الأمان"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6414,25 +6437,25 @@ msgid ""
msgstr ""
"فضلاً , تذكر أن phpMyAdmin هي واجة إستخدام فقط ولا يمكن أن تتجاوز حدود MySQL"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "الإعدادات الأساسية"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "المصادقة"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "خيارات المصادقة"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "إعداد الخادم"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6442,154 +6465,154 @@ msgid ""
"what they are for."
msgstr "إعداد متقدم للخادم , لاتغير أي من هذه القيم حتى تعلم وظيفتها"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "أدخل معلومات إتصال الخادم"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "إعداد التخزين"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "تعقب التغيرات"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "تخصيص خيارات التصدير"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "تخصيص خيارات الإستيراد"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
msgstr "تخصيص اطار التصفح"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "تخصيص الإطار الرئيسي"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "إستعلام SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "صندوق إستعلام SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "تخصيص الروابط الموجودة في صندوق إستعلام SQL"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "إعدادات إستعلامات SQL"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "بدء التشغيل"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "تخصيص صفحة بدء التشغيل"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "بنية قاعدة البيانات"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "بنية الجدول"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "التبويبات"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "إختر الطريقة التي تعمل بها التبويبات"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "بناء الارتباطات"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "حجم الورق"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "حقول نصية"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "تخصيص حقول الإدخال النصية"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "نص"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "تخصيص الخيارات الإفتراضية"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "تحذيرات"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "إلغاء عرض بعض التحذيرات في phpMyAdmin"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6601,15 +6624,15 @@ msgstr ""
"تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير "
"والإستيراد"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "مدخلات إضافية لـ iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6621,36 +6644,36 @@ msgstr ""
"إذا كان مفعل , فإن phpMyAdmin سوف تستمر في تنفيذ الإستعلامات المتعددة حتى "
"لو فشل بعضها"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "تجاهل أخطاء الجمل المتعددة"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "الإستيراد الجزئي: السماح بالمقاطعة"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "لاتحبط عندما يكون الخطأ في جمل الإدخال INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6662,82 +6685,82 @@ msgstr ""
"الهيئة الإفتراضي ; كن مدرك بأن هذه القائمة تعتمد على مكان (قاعدة البيانات "
"والجدول)"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "هيئة الملفات المستوردة"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "إستعمل الجملة LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "ضع أسماء الصفوف في السطر الأول"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "لاتستورد صفوف فارغة"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "عملات الإستيراد ($5.00 إلى 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "النسبة المئوية للإستيراد كرقم عشري (12.00% إلى .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "عدد الإستعلامات التي يتخطاها من البداية"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "إستيراد جزئي: تخطي الإستعلامات"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "الحالة الأولية"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "كم عدد الصفوف التي يمكن إدخالها مرة واحدة"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "عدد الصفوف المدخلة"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "حد أحرف العمود"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "حذف كل الكوكيز عند الخروج"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6747,11 +6770,11 @@ msgid ""
"kbd] authentication mode."
msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أم لا"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "تذكر إسم المستخدم"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6759,98 +6782,98 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "تحديد كم المدة التي يبقى فيها الكوكيز"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "صلاحية دخول الكوكيز"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "مضاعفة حجم مربع النص لأعمدة LONGTEXT"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "مربع نص أكبر لـ LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "المستخدمين لايمكنهم وضع قيمة أكبر"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Minimum number of databases to display the database filter box"
msgid "Maximum number of databases displayed in database list."
msgstr "أقل عدد جداول اللتي تعرض في صندوق ترشيح الجداول"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "قواعد بيانات أكبر"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for input field"
msgid "Maximum items on first level"
msgstr "أقصى حجم لحقل الإدخال"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Minimum number of databases to display the database filter box"
msgid "Maximum number of tables displayed in table list."
msgstr "أقل عدد جداول اللتي تعرض في صندوق ترشيح الجداول"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "جداول أكبر"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
@@ -6860,45 +6883,45 @@ msgid ""
"([kbd]0[/kbd] for no limit)."
msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: لانهائي)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "حدود الذاكرة"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show databases navigation as tree"
msgstr "عرض الشعار في الإطار الأيسر"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "عرض الشعار في الإطار الأيسر"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "عرض الشعار"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "إعمل رابط للمكان الذي يشير اليه الشعار"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "رابط الشعار"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
#, fuzzy
#| msgid ""
#| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
@@ -6910,31 +6933,31 @@ msgstr ""
"فتح الصفحة المرتبطة في النافذة الرئيسية ([kbd]main[/kbd]) أو في نافذة جديدة "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "هدف رابط الشعار"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel."
msgstr "عرض إختيار الخادم في الجزء العلوي من الإطار الأيسر"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "عرض إختيار الخوادم"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "الهدف لإيقونة الوصول السريع"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "الهدف لإيقونة الوصول السريع"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid ""
@@ -6942,904 +6965,960 @@ msgid ""
"display a filter box."
msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of items to display the filter box"
msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "أقل عدد جداول اللتي تعرض في صندوق ترشيح الجداول"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "فاصل شجرة قاعدة البيانات"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "فاصل شجرة الجدول"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "أقصى عمق لشجرة الجدول"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "توضيح الخادم تحت مؤشر الفأرة"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "تفعيل التوضيح (highlighting)"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "عنوان الجدول"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "عرض الجداول"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "عرض الشعار في الإطار الأيسر"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "عرض الإصدارات"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "عرض الشعار في الإطار الأيسر"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Connections since last refresh"
+msgid "Show functions in tree"
+msgstr "الإتصالات منذ آخر تحديث"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "عرض العمليات"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "عرض الإصدارات"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "عرض الشعار في الإطار الأيسر"
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "الجداول المستعملة مؤخراً"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
#, fuzzy
#| msgid "These are Edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links."
msgstr "هذه هي روابط التعديل والنسخ والحذف"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "ترتيب طبيعي"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "إستخدم الأيقونات او النصوص فقط , أو الإثنان"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "عنوان الجدول"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "الترتيب الإفتراضي"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Persistent connections"
msgid "Use persistent connections to MySQL databases."
msgstr "الإتصالات الثابتة"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "الإتصالات الثابتة"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "منع تعديل الأعمدة من نوع BLOB و BINARY"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "حماية الأعمدة من نوع BINARY"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "عدد الإستعلامات التي حفظت"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
msgstr "إختر أي وظيفة سوف تستعمل لتغيير الترميز"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "محرك إعادة الترميز"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "عند تصفح الجداول, تذكر ترتيب كل جدول"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "تذكر ترتيب الجداول"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "الترتيب الإفتراضي"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "عمود عرض علائقي"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "خيارات عرض الخوادم"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "قيمة الجلسة"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "خيارات المصادقة"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "لا يمكن الدخول إلى خادم MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "مضيف التحكم"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "مضيف التحكم"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "عواميد منطقة النص"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "لاتغير كلمة السر"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "اسم قاعدة البيانات"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "الجدول المستخدم مؤخرا"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "متغيرات"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "%s has been disabled for this MySQL server."
msgid "Enable SSL for connection to MySQL server."
msgstr "%s معطل في خادم MySQL هذا."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "إستخدم الجداول"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "استخدم الجدول المضيف"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "تعليقات الجدول"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "إظهار الدمغة الزمنية لتاريخ الإنشاء"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "أعرض نصيحة"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "إحتفظ بصندوق الإستعلام"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7850,11 +7929,11 @@ msgid ""
msgstr ""
"عبارة المرور السرية تستخدم لتشفير كعكة الإنترنت في[kbd]cookie[/kbd] المصادقة"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7866,53 +7945,53 @@ msgid ""
msgstr ""
"عبارة المرور السرية تستخدم لتشفير كعكة الإنترنت في[kbd]cookie[/kbd] المصادقة"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "صلاحية دخول الكوكيز"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "عواميد منطقة النص"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "العنوان الغيابي"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7920,52 +7999,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7973,34 +8052,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "اسم المستخدم"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "كلمة السر"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8012,53 +8091,53 @@ msgstr ""
"تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير "
"والإستيراد"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "زيب"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Issued queries"
msgid "Enter executes queries in console"
msgstr "إستعلامات صادرة"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8084,46 +8163,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "مستند مفتوح"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "خيارات تصدير قاعدة بيانات"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -8154,7 +8233,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8227,7 +8306,7 @@ msgstr "أنشئ الجدول"
msgid "Number of columns"
msgstr "عدد العواميد"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8270,63 +8349,63 @@ msgstr "الجدول/الجداول:"
msgid "Format:"
msgstr "الصيغة:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "إعدادات الصيغة المخصصة:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
"اسحب للأسفل لتعيين خيارات الصيغة المختارة و لتجاهل إعدادات الصيغ الأخرى."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "تحويل ترميز النص:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "الأسطر:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "إحفظ على الخادم في الدليل %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "قالب اسم الملف:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8334,74 +8413,86 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "استخدم هذه الإعدادات مجدداً عند تصدير قاعدة البيانات في المستقبل"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "ترميز الأحرف للملف:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "الضغظ:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "مضغوط"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "مضغوط: gzipped"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "عرض الخرج كنص"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Exporting rows from \"%s\" table"
+msgid "Export databases as separate files"
+msgstr "تصدير الأسطر من الجدول \"%s\""
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr ")عناوين ملتفة( أفقيا"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "إحفظ الخرج في ملف"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "اختر الجداول"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "اختر الجداول"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "اسم قاعدة البيانات"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "User name"
msgid "New table name"
msgstr "اسم المستخدم"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "أنسخ اسم العمود"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -8976,7 +9067,7 @@ msgid "Create an index on %s columns"
msgstr "إنشاء فهرس للعمود %s"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "أخفاء"
@@ -9120,11 +9211,6 @@ msgstr "الجمعة"
msgid "To"
msgstr "إلى"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "إرسال"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9346,29 +9432,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "اسم العمود"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "أحداث"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Function"
msgid "Functions:"
msgstr "دالة"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Processes"
msgid "Procedures:"
msgstr "عمليات"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "جداول"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9398,13 +9490,13 @@ msgstr "إطار التصفح"
msgid "Reload navigation panel"
msgstr "إطار التصفح"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9415,26 +9507,26 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "table name"
msgid "Filter databases by name or regex"
msgstr "اسم الجدول"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "حفظ كملف"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "table name"
msgid "Filter by name or regex"
msgstr "اسم الجدول"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9472,7 +9564,7 @@ msgstr ""
msgid "Database operations"
msgstr "خيارات تصدير قاعدة بيانات"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -10735,26 +10827,26 @@ msgstr "اسم العمود"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11145,61 +11237,61 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "تمت التعديلات"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "لا يمكن قراءة الملف"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relations"
msgid "Internal relation has been added."
msgstr "العلاقات الداخلية"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "لا يمكن قراءة الملف"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "تمت التعديلات"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "لا يمكن قراءة الملف"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "لا يمكن قراءة الملف"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relations"
msgid "Internal relation has been removed."
@@ -11299,41 +11391,47 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "تذكر ترتيب الجداول"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "بدون وصف"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid ""
#| "Tracking of changes made in database. Requires the phpMyAdmin "
@@ -11343,13 +11441,13 @@ msgid ""
"configuration storage there."
msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid ""
#| "Tracking of changes made in database. Requires the phpMyAdmin "
@@ -12189,7 +12287,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current server"
msgid "Current Server:"
@@ -16940,9 +17038,6 @@ msgstr ""
#~ msgid "Delete tracking data for this table"
#~ msgstr "حذف بيانات التتبع لهذا الجدول"
-#~ msgid "Show versions"
-#~ msgstr "عرض الإصدارات"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -17392,9 +17487,6 @@ msgstr ""
#~ msgid "Server traffic (in KiB)"
#~ msgstr "ترافيك الخادم (بالكيلو بايت)"
-#~ msgid "Connections since last refresh"
-#~ msgstr "الإتصالات منذ آخر تحديث"
-
#~ msgid "Questions since last refresh"
#~ msgstr "العمليات منذ آخر تحديث"
@@ -17720,9 +17812,6 @@ msgstr ""
#~ msgid "seconds"
#~ msgstr "الثانية"
-#~ msgid "Show processes"
-#~ msgstr "عرض العمليات"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "إلغاء"
diff --git a/po/az.po b/po/az.po
index 8cd47dd25f..918a7df406 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-05-21 01:04+0200\n"
"Last-Translator: Sevdimali İsa
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Hamısını göstər"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Zəhmət olamasa keçərli onaltılıq sətir daxil edin. Keçərli simvollar 0-9, A-"
"F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "Orjinal sətir"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "ləğv et"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Dayandırılmış Əlaqələr"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "İmport statusu"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Əvvəlcə Verilənlər Bazasını seçin"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Bağlantıya get:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Sütun adını kopyala."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Sütun adını buferə kopyalamaq üçün sağ klikləyin."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Parol yarat"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Yarat"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Parolu Dəyişdir"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Daha çox"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Paneli Göstər"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Paneli Gizlət"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Gizli naviqasiya ağac bəndlərini göstər."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Əsas panel ilə əlaqələndir"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Əsas panel ilə əlaqəni kəs"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr "Bazadakı bütün %s filtrləmək üçün axtarış mətnindən sonra Enterə basın"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "cədvəllər"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "görünüşlər"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "proseduralar"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "hadisələr"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "funksiyalar"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "İstənilən səhifə tarixdə tapılmadı, ola bilsin vaxtı keçib."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2432,49 +2475,49 @@ msgstr ""
"versiya %s, %s tarixində yayımlanıb."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", son stabil versiya:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "aktual"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Görünüş yarat"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Xəta Hesabatı Göndər"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Xəta Hesabatı Göndər"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr "Önəmli JavaScript xətası yarandı. Xəta hesabatı yollamaq istəyirsiniz?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Hesabat tənzimləmələrini dəyişdir"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Hesabat Təfsilatlarını Göstər"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
"Eksport PHP səviyyəsindəki aşağı icra(execution) vaxtına görə tamamlanmadı!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2484,427 +2527,427 @@ msgstr ""
"edilmədə, bəzi sahələr, PHP-nin max_input_vars konfiqurasiyasından dolayı "
"göz ardı edilə bilər."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Serverdə bəzi xətalar aşkar edildi!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Zəhmət olmasa bu pəncərənin altına baxın."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Heç birin diqqətə alma"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Hər tənzimləmələriniz kimi bunlar da hal-hazırda göndərilir, zəhmət olmasa "
"səbirli olun."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Bu sorğu təkrar icra olunsunmu?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Bu əlfəcini silmək istədiyinizə əminsinizmi?"
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Cədvəl haqqında izahat"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Axtarış nəticələrini gizlət"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Əvvəlki"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Sonrakı"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Bugün"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Yanvar"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Fevral"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Mart"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Aprel"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "May"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "İyun"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "İyul"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Avqust"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Sentyabr"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Oktyabr"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Noyabr"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Dekabr"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Yan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "İyun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "İyul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Avq"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sent"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Noy"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Bazar"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Bazar Ertəsi"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Çərşənbə axşamı"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Çərşənbə"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Cümə axşamı"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Cümə"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Şənbə"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Baz"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Baz Ert"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Çerş Axş"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Çerş"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Cüme Axş"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Cüme"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Şen"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "B"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Baz Ert"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Çərş Axş"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Ç"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "CA"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "C"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Ş"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "təqvim-ay-il"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "Heç biri"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Saat"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Dəqiqə"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Saniyə"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Mətn sahəsi istifadə et"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid email address"
msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date"
msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date ( ISO )"
msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter the same value again"
msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin"
-#: js/messages.php:776
+#: js/messages.php:777
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter no more than {0} characters"
msgstr "Lütfən düzgün captcha daxil edin!"
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter at least {0} characters"
msgstr "Lütfən düzgün captcha daxil edin!"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value between {0} and {1}"
msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date or time"
msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2977,17 +3020,17 @@ msgstr "saatda"
msgid "per day"
msgstr "Günə"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Mövcud konfiqurasiya faylı(%s) oxuna bilən deyil."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Konfiqurasiya faylında yanlış icazələr, hərkəsə yazılabilən olmamalıdır!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Şrift ölçüsü"
@@ -3006,7 +3049,7 @@ msgid "Requery"
msgstr "Sorğunu təkrarla"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3204,7 +3247,7 @@ msgid "Count:"
msgstr "Sayı"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3379,7 +3422,7 @@ msgstr "Əlfəcini yenilə"
msgid "Delete bookmark"
msgstr "Əlfəcini sil"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3387,19 +3430,19 @@ msgstr ""
"Server cavab vermir(yada ki lokal MYSQL serverinin soketi duzgün "
"konfiqurasiya edilməyib)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Server cavab vermir."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Zəhmət olmasa Bazanın olduğu qovluğun səlahiyyətlərini gözdən keçirin."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detallar…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Konfiqurasiya faylınızda göstərilmiş idarəetmə istifadəçiləri üçün qoşulma "
@@ -3475,6 +3518,16 @@ msgstr "Sözlər boşluq ifadəsi (\" \") ilə ayrılmışdır."
msgid "Inside tables:"
msgstr "Cədvəldəkilər:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Hamısını Seç"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Heç birini seçmə"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Daxili sütun:"
@@ -3528,7 +3581,7 @@ msgid "All"
msgstr "Hamısı"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Sətir sayı:"
@@ -3822,7 +3875,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3833,34 +3886,13 @@ msgstr "Server"
msgid "View"
msgstr "Görünüş"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Quruluş"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3955,8 +3987,8 @@ msgstr "Orta sütunlar"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Verilənlər Bazaları"
@@ -4059,7 +4091,7 @@ msgid "Recent"
msgstr "Son"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Favorit cədvəllər"
@@ -4128,16 +4160,6 @@ msgstr "Birləşmələr"
msgid "Sorting"
msgstr "Sıralama"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Cədvəllər"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Tranzaksiya kordinatoru"
@@ -4671,7 +4693,7 @@ msgstr "Ən çox: %s%s"
msgid "MySQL said: "
msgstr "MySQL deyir: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL-i İzah Et"
@@ -4688,7 +4710,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "PHP Kodunu Göstərmə"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP Kodunu Hazırla"
@@ -4801,17 +4823,6 @@ msgstr "Bu qiymətdən istifadə et"
msgid "Rows"
msgstr "Sıra sayı"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Məlumat"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4973,7 +4984,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4981,24 +4992,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s vəya yenisinə yüksəltməlisiniz."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5227,7 +5238,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Susmaya görə olan dəyəri geri qaytar"
@@ -5632,7 +5643,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -5642,7 +5653,7 @@ msgstr "%s ifadəsi əlavə et"
msgid "Save as file"
msgstr "Fayl olaraq yaddaşa ver"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Faylın kodlaşdırması(charset)"
@@ -5669,15 +5680,15 @@ msgstr "Sıxışdırma"
msgid "Put columns names in the first row"
msgstr "Sütun adlarını ilk sətrə qoy"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Sütunların əhatə edildiyi işarə"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Sahələrin escape edildiyi işarə"
@@ -5693,14 +5704,14 @@ msgstr "NULL-u bununla dəyişdir"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Sütunlar bununla sonlandırılıb(Columns terminated by)"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Sətirlər bununla ləğv edilib(Lines terminated by)"
@@ -5772,7 +5783,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Mövcud fayl(lar)ın üzərinə yaz"
@@ -5789,8 +5800,8 @@ msgstr "AUTO_INCREMENT dəyəri əlavə et"
msgid "Enclose table and column names with backquotes"
msgstr "Cədvəl və sütun adlarını tək dırnaq arasına al"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL uyğunluq rejimi"
@@ -5905,15 +5916,15 @@ msgid "Customize browse mode."
msgstr "Avtomatik qurtarma rejimi"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Susmaya görə olan seçimləri özəlləşdir."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV verilenleri"
@@ -5941,7 +5952,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Susmaya görə olan eksport seçimlərini özəlləşdirin."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Özəllikləri"
@@ -5986,50 +5997,62 @@ msgstr "Naviqasiya paneli"
msgid "Customize appearance of the navigation panel."
msgstr "Naviqasiya panelinin mövzusun(tema) dəyiş."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Naviqasiya paneli"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Naviqasiya panelini özəlləşdir"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Serverlər"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Serverlərin görüntülənmə seçimləri."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Cədvəllərin görüntülənmə seçimləri."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Əsas Panel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Səhifə başlığı"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Təhlükəsizlik"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6037,23 +6060,23 @@ msgstr ""
"Zəhmət olmasa unutmayın ki, phpMyAdmin sadəcə istifadəçi interfeysidir və "
"özəllikləri MySQL-i limitləməz."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "İdentifikasiya"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "İdentifikasiya tənzimləmələri."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Server Konfiqurasiyası"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6061,272 +6084,272 @@ msgstr ""
"İləri səviyyə server konfiqurasiyası, nə olduqlarını bilmirsinizsə bunları "
"dəyişdirməyin."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Server əlaqə parametrlərini daxil edin."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Eksport seçimlərini özəlləşdir"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Naviqasiya panelini özəlləşdir"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Əsas Paneli özəlləşdir"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL sorğuları"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL sorğu qutusu"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "SQL sorğu tənzimləmələri."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Başlanğıc"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Başlanğıc səhifəsini fərdiləşdir."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Verilənlər Bazasının strukturu"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Hansı detalların baza strukturunda(cədvəllərin siyahısında) göstəriləcəyini "
"seçin."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Cədvəl strukturu"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Cədvəl strukturu(sütünların siyahısı) üçün tənzimləmələr."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Tablar(Pəncərələr)"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Əlaqəli sxemi göstər"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Mətn sahəsi"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Mətn daxiletmə sahəsini fərdiləşdir."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Susmaya görə olan seçimləri fərdiləşdir"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Xəbərdarlıqlar"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "phpMyAdmin tərəfindən göstərilən bəzi xəbərdarlıqları deaktiv et."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "İlk sətirdəki sütun adları"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Boş sətirləri import etmə"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Sıfır qiymətləri üçün AUTO_INCREMENT qiyməti istifadə etmə"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6334,616 +6357,672 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Maksimum Bazalar"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "İlk səviyyədəki maksimum maddə"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Göstəriləcək maksimum sətir sayı"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Cədvəl siyahısında göstəriləcək maksimum cədvəl sayıdır."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Maksimum cədvəllər"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Yaddaş limiti"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Gizli naviqasiya ağac bəndlərini göstər."
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Naviqasiya panelində logonu göstər."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Naviqasiya panelinin yuxarısında server seçimini göstər."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "Cədvəl naviqasiya çubuğu"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr "Ən çox son istifadə olunan cədvəl sayıdır; deaktiv etmək üçün 0 edin."
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Cədvəl siyahısını göstər/gizlə"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr "Son istifadə olunan cədvəllər"
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Gizli naviqasiya ağac bəndlərini göstər."
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr ""
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Versiyaları göstər"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr ""
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Gizli naviqasiya ağac bəndlərini göstər."
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Funksiya sahələrini göstər"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
-msgstr ""
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Prosesleri göster"
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr "Təbii Sıra"
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Versiyaları göstər"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Gizli naviqasiya ağac bəndlərini göstər."
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr "Ən çox son istifadə olunan cədvəl sayıdır; deaktiv etmək üçün 0 edin."
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr "Son istifadə olunan cədvəllər"
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr "Təbii Sıra"
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Cədvəl naviqasiya çubuğu"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Binar sütunları qoru"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Tarixdə nə qədər sorğu saxlanılacağıdır."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Sorğu tarixi uzunluğu"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Cədvəlin sıralamasını xatırla"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Primary key added."
msgid "Primary key default sort order"
msgstr "Birinci Dərəcəli Açar əlavə edildi."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Əlaqə görüntü sütunu"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Serverlərin görüntülənmə seçimləri."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "İstifadə olunmayacaqsa boş buraxın."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Parolsuz girişlərə icazə verin"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Session vaxt qurşağı"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "İstifadə üçün identifikasiya metodu."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Əlfəcin cədvəli"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "MySQL server bağlantısını sıxışdır(kompress)."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Serverə necə bağlansın, əmin deyilsinizə [kbd]tcp[/kbd] olaraq buraxın."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Əlaqə tipi"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Nəzarət serveri"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Nəzarət portu"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Verilənlər Bazalarını gizlət"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Server host adı"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Orta sütunlar"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -6955,43 +7034,43 @@ msgstr ""
"Bazada istifadəçi seçimlərinin saxlanmaması üçün boş buraxın, təklif edilən: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Parolsuz qoşulmağı sınayın."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Parolsuz qoşul"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7002,30 +7081,30 @@ msgstr ""
"a]-a baxın. Dəstək istəmirsinizsə boş buraxın. Təklif olunan: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Verilənlər Bazasının adı"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "MySQL serverinin dinlədiyi portu, susmaya görə boş buraxın."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Server portu"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Son istifadə edilən Cədvəl"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7037,141 +7116,141 @@ msgstr ""
"Bazada istifadəçi seçimlərinin saxlanmaması üçün boş buraxın, təklif edilən: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Favorit cədvəllər"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Əlaqə cədvəli"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Server yuvası(socket)"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL server əlaqəsi üçün SSL aktivləşdirir."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Görünüş sütunları cədvəli"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "İfadələrdən izlərə"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Avtomatik olaraq verisyaları yarat"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7179,197 +7258,197 @@ msgstr ""
"Bazada istifadəçi seçimlərinin saxlanmaması üçün boş buraxın, təklif edilən: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "İstifadəçi cədvəlləri"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
"Serverin rahat başa düşülən açıqlaması. Hostadını göstərmək üçün boş buraxın."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Bu serverin ətraflı adı"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Bütün sətirləri göstərməyə icazə ver"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Cədvəl haqqında izahat"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Yaradılma zaman nişanını göstər"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Sahə tiplərini göstər"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Funksiya sahələrini göstər"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "İpucu göstər"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "phpinfo() linkini göstər"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "SQL sorğularını göstər"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL sorğusu"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Verilənlər Bazası və cədvəl statistikalarını göstərmək üçün icazə ver(məs: "
"istifadə olunan yaddaş)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Statistikaları göstər"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"İstifadə olunan cədvəlləri işarələyin və Verilənlər Bazalarını kilidli "
"cədvəllərlə birlikdə göstərilməsini mümkun edin."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7377,22 +7456,22 @@ msgid ""
"detected."
msgstr "Əgər Suhosin aşkarlanarsa, ana səhifədə xəbərdarlıq göstərilir."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin xəbərdarlığı"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7405,11 +7484,11 @@ msgstr ""
"sahələri(*2) və sorğu pəncərəsi (*1.25) üçün bu qiymətin önəmi "
"bildiriləcəkdir."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Mətn sahəsi sütunları"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7422,31 +7501,31 @@ msgstr ""
"sahələri(*2) və sorğu pəncərəsi (*1.25) üçün bu qiymətin önəmi "
"bildiriləcəkdir."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Mətin Sahəsi sətirləri"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Verilənlər Bazası seçildikdə brovser pəncərə başlığı."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Susmaya görə başlıq"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7454,52 +7533,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Son versiyanı yoxla"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Əsas phpMyAdmin səhifəsində son versiya yoxlamağı aktiv et."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Versiya yoxlaması"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7507,80 +7586,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Proksi istifadəçi adı"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Proksi parolu"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Xəta hesabatları göndər"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Configuration file"
msgid "Enable Zero Configuration mode"
@@ -7606,46 +7685,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentasiya"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Verilənlər bazası eksport variantları"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "MS Excel verilenleri üçün CSV"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "OpenDocument Mətni"
@@ -7674,7 +7753,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -7743,7 +7822,7 @@ msgstr "Cədvəl yarat"
msgid "Number of columns"
msgstr "Sütun sayı"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7786,64 +7865,64 @@ msgstr "Cədvəl(lər):"
msgid "Format:"
msgstr "Format:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformasiya variantları"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Sətirlər:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Çıxış:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Serverdə %s direktoriyasında yaddaşa ver"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Fayl adı şablonu:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7851,64 +7930,76 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "Bunu gələcək eksportlar üçün də istifadə et"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Faylın Charset-i:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Sıxışdırma:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zip olaraq"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzip olaraq"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Çıxış verilənlərini mətn olaraq göstər"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Görünüşləri cədvəl halında eksport et"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Cədvəl başlıqlarını eksport et"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Çıxış verilənlərini fayla yaddaşa ver"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Ölçüsü bundan çox olan cədvəlləri keç"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Verilənlər Bazası Seç"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Cədvəl Seç"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Yeni Verilənlər Bazasının adı"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Yeni cədvəl adı"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Köhnə sütun adı"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Yeni sütun adı"
@@ -8466,7 +8557,7 @@ msgid "Create an index on %s columns"
msgstr " %s sütunda indeks yarat"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8598,11 +8689,6 @@ msgstr "Burdan"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Submit"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Cədvəl prefiksi əlavə et:"
@@ -8817,22 +8903,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Naviqasiya görüntüsü yüklənərkən xəta baş verdi"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Qrup adı:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Hadisələr:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funksiyalar:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Proseduralar:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Cədvəllər:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8858,33 +8950,33 @@ msgstr "Naviqasiya paneli"
msgid "Reload navigation panel"
msgstr "Naviqasiya panelini yenidən yüklə"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Verilənlər Bazasını adına ya da düzgün ifadəsinə görə filtrlə"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Sürətli filtri təmizlə"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Adına ya da düzgün ifadəsinə görə filtrlə"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8919,7 +9011,7 @@ msgstr "Yeni"
msgid "Database operations"
msgstr "Verilənlər Bazası əməliyyatları"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Gizli maddələri göstər"
@@ -10097,26 +10189,26 @@ msgstr "Sütun adları: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10494,55 +10586,55 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Modifications have been saved"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Fayl oxuna bilmir"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Daxili əlaqə əlavə edildi."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Xəta: Daxili əlaqə əlavə edilmədi!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Modifications have been saved"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Fayl oxuna bilmir"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Xəta: Daxili əlaqə ləğv edilə bilmədi!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Daxili əlaqə ləğv edildi."
@@ -10633,54 +10725,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Cədvəlin sıralamasını xatırla"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "Haqqında məlumat (description) mövcud deyildir"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11418,7 +11516,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Cari Server:"
@@ -15869,9 +15967,6 @@ msgstr "concurrent_insert 0-a konfiqurasiya edilib"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Cədvəl üçün izləmə verilənlərini sil"
-#~ msgid "Show versions"
-#~ msgstr "Versiyaları göstər"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -16442,9 +16537,6 @@ msgstr "concurrent_insert 0-a konfiqurasiya edilib"
#~ msgid "Reset"
#~ msgstr "Yenile"
-#~ msgid "Show processes"
-#~ msgstr "Prosesleri göster"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Yenile"
diff --git a/po/be.po b/po/be.po
index 32fbf99bcb..d71451aa0b 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-05-15 14:28+0200\n"
"Last-Translator: Viktar Palstsiuk
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Паказаць усе"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Першапачатковая пазыцыя"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Скасаваць"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Спынена"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Імпартаваць файлы"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "Парог файла логу"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Выберыце табліцу(ы)"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Базы дадзеных адсутнічаюць"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Назвы калёнак"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Згенэраваць пароль"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Згенэраваць"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Зьмяніць пароль"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пан"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Паказаць усе"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "Дадаць новае поле"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Паказаць сетку"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
msgid "Link with main panel"
msgstr "Налады экспарту базы дадзеных"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
msgid "Unlink from main panel"
msgstr "Налады экспарту базы дадзеных"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Табліц"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Выгляд"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Працэдуры"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "Падзея"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Функцыі"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2721,137 +2764,137 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
#, fuzzy
msgid ", latest stable version:"
msgstr "Стварыць сувязь"
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Базы дадзеных адсутнічаюць"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Стварыць сувязь"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "ID сэрвэра"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Show open tables"
msgid "Show Report Details"
msgstr "Паказаць адкрытыя табліцы"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ігнараваць"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Паказаць гэты запыт зноў"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Ці сапраўды вы жадаеце "
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL-запыт"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Камэнтар да табліцы"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "SQL-запыт"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Папярэдняя старонка"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2859,96 +2902,96 @@ msgid "Next"
msgstr "Наступная старонка"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Агулам"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Двайковы"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Сак"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Кра"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Тра"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Чэр"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Ліп"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Жні"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Кас"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Сту"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Сак"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Кра"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2956,78 +2999,78 @@ msgid "May"
msgstr "Тра"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Чэр"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Ліп"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Жні"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Кас"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Ліс"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Сьн"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ндз"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пан"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Аўт"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пят"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -3035,86 +3078,86 @@ msgid "Sun"
msgstr "Ндз"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Пан"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Аўт"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Цач"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Пят"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ндз"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пан"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Аўт"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сер"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Цач"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пят"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
@@ -3123,137 +3166,137 @@ msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Няма"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "выкарыстоўваецца"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "у сэкунду"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Выкарыстоўваць тэкставае поле"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid email address"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid URL"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date ( ISO )"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid number"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid credit card number"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter only digits"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter the same value again"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter at least {0} characters"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value between {0} and {1}"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value less than or equal to {0}"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value greater than or equal to {0}"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date or time"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid HEX input"
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3325,16 +3368,16 @@ msgstr "у гадзіну"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Памер шрыфта"
@@ -3355,7 +3398,7 @@ msgid "Requery"
msgstr "па запыту"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3570,7 +3613,7 @@ msgid "Count:"
msgstr "Назвы калёнак"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3783,7 +3826,7 @@ msgstr "Паказваючы закладку"
msgid "Delete bookmark"
msgstr "Выдаліць сувязь"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3791,21 +3834,21 @@ msgid ""
"configured)."
msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сэрвэр не адказвае"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Падрабязьней…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
@@ -3888,6 +3931,16 @@ msgstr "Словы, падзеленыя прагалам (\" \")."
msgid "Inside tables:"
msgstr "У табліцы(ах):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Выбраць усё"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Зьняць усе адзнакі"
+
#: libraries/DbSearch.class.php:455
#, fuzzy
#| msgid "Inside field:"
@@ -3957,7 +4010,7 @@ msgid "All"
msgstr "Усе"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
@@ -4292,7 +4345,7 @@ msgstr ""
"іх, магчыма, можна выдаліць."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Сэрвэр"
@@ -4303,34 +4356,13 @@ msgstr "Сэрвэр"
msgid "View"
msgstr "Выгляд"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Структура"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4427,8 +4459,8 @@ msgstr "Дадаць/выдаліць калёнку крытэру"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Базы дадзеных"
@@ -4549,7 +4581,7 @@ msgid "Recent"
msgstr "Скінуць"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4625,16 +4657,6 @@ msgstr "Аб'яднаньні"
msgid "Sorting"
msgstr "Сартаваньне"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Табліц"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Каардынатар перакладу"
@@ -5165,7 +5187,7 @@ msgstr "Максымальны памер: %s%s"
msgid "MySQL said: "
msgstr "Адказ MySQL: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Тлумачыць SQL"
@@ -5182,7 +5204,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Без PHP-коду"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Стварыць PHP-код"
@@ -5304,17 +5326,6 @@ msgstr "Выкарыстоўваць гэта значэньне"
msgid "Rows"
msgstr "Радкі"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Дадзеныя"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5499,7 +5510,7 @@ msgstr "Сэрвэр"
msgid "Invalid authentication method set in configuration:"
msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5507,24 +5518,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5770,7 +5781,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6187,7 +6198,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6197,7 +6208,7 @@ msgstr "Выразы"
msgid "Save as file"
msgstr "Захаваць як файл"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Кадыроўка файла:"
@@ -6227,17 +6238,17 @@ msgstr "Сьціск"
msgid "Put columns names in the first row"
msgstr "Пазначыць назвы палёў у першым радку"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Палі ўзятыя ў"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6257,16 +6268,16 @@ msgstr "Замяняць NULL на"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Радкі падзеленыя"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6347,7 +6358,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Перазапісваць існуючы(я) файл(ы)"
@@ -6367,8 +6378,8 @@ msgstr "Дадаць значэньне AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Рэжым сумяшчальнасьці SQL"
@@ -6491,16 +6502,16 @@ msgid "Customize browse mode."
msgstr "Рэжым аўтаматычнага ўзнаўленьня"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
msgid "Customize default options."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6531,7 +6542,7 @@ msgstr "Імпартаваць файлы"
msgid "Customize default export options."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6582,176 +6593,186 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+msgid "Navigation tree"
+msgstr "Налады экспарту базы дадзеных"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+msgid "Customize the navigation tree."
+msgstr "Налады экспарту базы дадзеных"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Сэрвэры"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Add new field"
msgid "Main panel"
msgstr "Дадаць новае поле"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
#, fuzzy
#| msgid "Microsoft Excel 2000"
msgid "Microsoft Office"
msgstr "Microsoft Excel 2000"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Старонка:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
msgid "Authentication"
msgstr "Аўтэнтыфікацыя…"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
msgid "Authentication settings."
msgstr "Аўтэнтыфікацыя…"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "Супастаўленьне падлучэньня да MySQL"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid "Customize export options"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
#, fuzzy
msgid "Customize import defaults"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
msgid "Customize navigation panel"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
msgid "Customize main panel"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "Стан"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
msgid "Customize startup page."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database for user"
msgid "Database structure"
msgstr "База дадзеных для карыстальніка"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6759,84 +6780,84 @@ msgstr ""
msgid "Table structure"
msgstr "База дадзеных для карыстальніка"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Табліца"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Рэляцыйная схема"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Памер паперы"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Выкарыстоўваць тэкставае поле"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
msgid "Customize text input fields."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Тэкст Texy!"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
msgid "Customize default options"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
#, fuzzy
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
@@ -6847,119 +6868,119 @@ msgstr ""
"скончваецца час выкананьня. Гэта можа быць добрым спосабам імпартаваньня "
"вялікіх файлаў, аднак, гэта можа перапыніць транзакцыі."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Фармат імпартаванага файла"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Выкарыстоўваць ключавое слова LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Пазначыць назвы палёў у першым радку"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start."
msgstr "Колькасьць (запытаў), якія трэба прапусьціць ад пачатку"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Дадаць значэньне AUTO_INCREMENT"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
#, fuzzy
msgid "Number of inserted rows"
msgstr "Колькасьць адсартаваных радкоў."
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6967,51 +6988,51 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of databases displayed in database list."
msgstr "Колькасьць адкрытых табліц."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
#, fuzzy
msgid "Maximum databases"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -7019,13 +7040,13 @@ msgid ""
"the navigation tree."
msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum items on first level"
msgstr "Максымальны памер для часовых файлаў сартаваньня"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -7033,99 +7054,99 @@ msgid ""
"tree."
msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of tables displayed in table list."
msgstr "Колькасьць адкрытых табліц."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
#, fuzzy
msgid "Memory limit"
msgstr "Абмежаваньні рэсурсаў"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Паказаць сетку"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Show logo in navigation panel."
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "The number of tables that are open."
msgid ""
@@ -7133,993 +7154,1047 @@ msgid ""
"display a filter box."
msgstr "Колькасьць адкрытых табліц."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Minimum number of items to display the filter box"
msgstr "Колькасьць адкрытых табліц."
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Minimum number of databases to display the database filter box"
msgstr "Колькасьць адкрытых табліц."
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
#, fuzzy
msgid "Database tree separator"
msgstr "Шаблён назвы файла"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Загаловак табліцы"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Паказаць табліцы"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Паказаць сетку"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Паказаць сетку"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Паказаць сетку"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Паказаць працэсы"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Паказаць сетку"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Паказаць сетку"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Колькасьць адкрытых табліц."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
msgid "Recently used tables"
msgstr "Праверыць табліцу"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Зьмяніць парадак табліцы"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Загаловак табліцы"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Перайменаваць табліцу ў"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Першасны ключ быў дададзены да %s."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Патокаў узнаўленьня"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Адлюстраванае поле сувязі"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
#, fuzzy
msgid "Save directory"
msgstr "Хатняя тэчка дадзеных"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
#, fuzzy
msgid "Host authorization order"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
#, fuzzy
msgid "Host authorization rules"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Значэньне сэсіі"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
msgid "Authentication method to use."
msgstr "Аўтэнтыфікацыя…"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
#, fuzzy
msgid "Authentication type"
msgstr "Аўтэнтыфікацыя…"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Немагчыма залагавацца на сэрвэр MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "Падлучэньні"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Любы хост"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Любы хост"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "імя сэрвэра"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Не зьмяняць пароль"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "імя базы дадзеных"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "ID сэрвэра"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Аналізаваць табліцу"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Зьменныя"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Рамантаваць табліцу"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Выбар сэрвэра"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "The number of fsync() writes done to the log file."
msgid "Enable SSL for connection to MySQL server."
msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Паказваць камэнтары калёнак"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дэфрагмэнтаваць табліцу"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Выразы"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Рэжым аўтаматычнага ўзнаўленьня"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Выкарыстоўваць табліцы"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Выкарыстоўваць табліцу хостаў"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Камэнтар да табліцы"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Паказаць інфармацыю пра PHP"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Паказаць стан залежных сэрвэраў"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Паказаць адкрытыя табліцы"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Паказаць сетку"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "Паказаць поўныя запыты"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Статыстыка радку"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
#, fuzzy
msgid "Skip locked tables"
msgstr "Паказаць адкрытыя табліцы"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
msgid "Default title"
msgstr "Перайменаваць базу дадзеных у"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8127,53 +8202,53 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
#, fuzzy
msgid "Upload directory"
msgstr "Хатняя тэчка дадзеных"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8181,85 +8256,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Імя карыстальніка:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Пароль"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "ID сэрвэра"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8289,48 +8364,48 @@ msgstr "Апаратная аўтэнтыфікацыя скончылася н
msgid "Signon authentication"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV з выкарыстаньнем LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Спэцыфікацыя Open Document"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Іншы колер"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV для дадзеных MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8361,7 +8436,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8441,7 +8516,7 @@ msgstr "Стварыць табліцу"
msgid "Number of columns"
msgstr "Колькасьць палёў"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Немагчыма загрузіць плагіны экспартаваньня, калі ласка, праверце ўсталяваныя "
@@ -8499,70 +8574,70 @@ msgstr "Табліц"
msgid "Format:"
msgstr "Фармат"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Опцыі пераўтварэньня"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
#, fuzzy
msgid "Encoding Conversion:"
msgstr "Вэрсія кліента MySQL"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Радкі"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Захаваць на сэрвэры ў тэчцы %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Шаблён назвы файла"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8577,84 +8652,96 @@ msgstr ""
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
"наступныя зьмены: %3$s. Астатні тэкст застанецца як ёсьць."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Кадыроўка файла:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Сьціск"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "архіваваны ў zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "архіваваны ў gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Захаваць як файл"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Стварыць новую табліцу ў БД %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "гарызантальна (павернутыя загалоўкі)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Захаваць як файл"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Выберыце табліцу(ы)"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Выберыце табліцу(ы)"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "імя базы дадзеных"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Няма табліц"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Назвы калёнак"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9285,7 +9372,7 @@ msgid "Create an index on %s columns"
msgstr "Стварыць індэкс на %s калёнках"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Схаваць"
@@ -9435,11 +9522,6 @@ msgstr "Пят"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Адправіць"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9661,29 +9743,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Назвы калёнак"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Падзеі"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Функцыі"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Працэдуры"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Табліц"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9711,13 +9799,13 @@ msgstr "Налады экспарту базы дадзеных"
msgid "Reload navigation panel"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9725,26 +9813,26 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "table name"
msgid "Filter databases by name or regex"
msgstr "імя табліцы"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Захаваць як файл"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "table name"
msgid "Filter by name or regex"
msgstr "імя табліцы"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9782,7 +9870,7 @@ msgstr ""
msgid "Database operations"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -11063,26 +11151,26 @@ msgstr "Назвы калёнак"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Недапушчальны парэмэтар для імпарту дадзеных у CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Некарэктны фармат CSV-дадзеных у радку %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@@ -11519,63 +11607,63 @@ msgstr "Фарматуе тэкст як SQL-запыт з падсьвечан
msgid "Formats text as XML with syntax highlighting."
msgstr "Фарматуе тэкст як SQL-запыт з падсьвечаным сынтаксісам."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Памылка: сувязь ужо існуе."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "Сувязь FOREIGN KEY была дададзеная"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Памылка: сувязь не дададзеная."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "Памылка: сувязь не дададзеная."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Унутраная сувязь дададзеная"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Памылка: сувязь не дададзеная."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "Сувязь FOREIGN KEY была дададзеная"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Памылка: сувязь не дададзеная."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Памылка: сувязь не дададзеная."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11676,54 +11764,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Перайменаваць табліцу ў"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "няма апісаньня"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12549,7 +12643,7 @@ msgstr "Праверыць табліцу"
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -18276,9 +18370,6 @@ msgstr "максымум адначасовых злучэньняў"
#~ msgid "Reset"
#~ msgstr "Скінуць статыстыку"
-#~ msgid "Show processes"
-#~ msgstr "Паказаць працэсы"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Скінуць"
diff --git a/po/be@latin.po b/po/be@latin.po
index 30c0a87cbe..4bacef21b5 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-28 11:02+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Pakazać usie"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Pieršapačatkovaja pazycyja"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Skasavać"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Spyniena"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import files"
msgid "Import status"
msgstr "Impartavać fajły"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "Paroh fajła łogu"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Vybierycie tablicu(y)"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "No tables"
msgid "Go to link:"
msgstr "Niama tablic"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Nazvy kalonak"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Zgieneravać parol"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Zgieneravać"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Źmianić parol"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pan"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Pakazać usie"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "Dadać novaje pole"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Pakazać sietku"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Use text field"
msgid "Link with main panel"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Use text field"
msgid "Unlink from main panel"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tablic"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Vyhlad"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Pracedury"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "Padzieja"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Funkcyi"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2749,139 +2792,139 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "Bazy dadzienych adsutničajuć"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Stvaryć"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Show open tables"
msgid "Show Report Details"
msgstr "Pakazać adkrytyja tablicy"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignaravać"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Pakazać hety zapyt znoŭ"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Ci sapraŭdy vy žadajecie "
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Execute bookmarked query"
msgid "%s queries executed %s times in %s seconds."
msgstr "Vykanać zapyt z zakładak"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Kamentar da tablicy"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "in query"
msgid "Hide arguments"
msgstr "pa zapytu"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Papiaredniaja staronka"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2889,96 +2932,96 @@ msgid "Next"
msgstr "Nastupnaja staronka"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ahułam"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Dvajkovy"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Sak"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Kra"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Tra"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Čer"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Lip"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Žni"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Kas"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Sak"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Kra"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2986,78 +3029,78 @@ msgid "May"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Čer"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Žni"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Vier"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Śn"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ndz"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pan"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Aŭt"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Piat"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -3065,86 +3108,86 @@ msgid "Sun"
msgstr "Ndz"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Pan"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Aŭt"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Sier"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Cač"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Piat"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ndz"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pan"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Aŭt"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sier"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cač"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Piat"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
@@ -3153,137 +3196,137 @@ msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Nijakaja"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "vykarystoŭvajecca"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "u sekundu"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid email address"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid URL"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date ( ISO )"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid number"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid credit card number"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter only digits"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter the same value again"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter at least {0} characters"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value between {0} and {1}"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value less than or equal to {0}"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value greater than or equal to {0}"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date or time"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid HEX input"
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3355,16 +3398,16 @@ msgstr "u hadzinu"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Pamier šryfta"
@@ -3385,7 +3428,7 @@ msgid "Requery"
msgstr "pa zapytu"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3602,7 +3645,7 @@ msgid "Count:"
msgstr "Nazvy kalonak"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3817,7 +3860,7 @@ msgstr "Pakazvajučy zakładku"
msgid "Delete bookmark"
msgstr "Vydalić suviaź"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3825,21 +3868,21 @@ msgid ""
"configured)."
msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server nie adkazvaje"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Padrabiaźniej…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym "
@@ -3924,6 +3967,16 @@ msgstr "Słovy, padzielenyja prahałam (\" \")."
msgid "Inside tables:"
msgstr "U tablicy(ach):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Vybrać usio"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Źniać usie adznaki"
+
#: libraries/DbSearch.class.php:455
#, fuzzy
#| msgid "Inside field:"
@@ -3993,7 +4046,7 @@ msgid "All"
msgstr "Usie"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
@@ -4328,7 +4381,7 @@ msgstr ""
"ich, mahčyma, možna vydalić."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -4339,34 +4392,13 @@ msgstr "Server"
msgid "View"
msgstr "Vyhlad"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4463,8 +4495,8 @@ msgstr "Dadać/vydalić kalonku kryteru"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Bazy dadzienych"
@@ -4588,7 +4620,7 @@ msgid "Recent"
msgstr "Skinuć"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4664,16 +4696,6 @@ msgstr "Ab'jadnańni"
msgid "Sorting"
msgstr "Sartavańnie"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tablic"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Kaardynatar pierakładu"
@@ -5209,7 +5231,7 @@ msgstr "Maksymalny pamier: %s%s"
msgid "MySQL said: "
msgstr "Adkaz MySQL: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Tłumačyć SQL"
@@ -5226,7 +5248,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Biez PHP-kodu"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Stvaryć PHP-kod"
@@ -5348,17 +5370,6 @@ msgstr "Vykarystoŭvać heta značeńnie"
msgid "Rows"
msgstr "Radki"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Dadzienyja"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5545,7 +5556,7 @@ msgstr "Server"
msgid "Invalid authentication method set in configuration:"
msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5553,24 +5564,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5816,7 +5827,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6233,7 +6244,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6243,7 +6254,7 @@ msgstr "Vyrazy"
msgid "Save as file"
msgstr "Zachavać jak fajł"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -6272,17 +6283,17 @@ msgstr "Ścisk"
msgid "Put columns names in the first row"
msgstr "Paznačyć nazvy paloŭ u pieršym radku"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Pali ŭziatyja ŭ"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6302,16 +6313,16 @@ msgstr "Zamianiać NULL na"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Radki padzielenyja"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6389,7 +6400,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Pierazapisvać isnujučy(ja) fajł(y)"
@@ -6408,8 +6419,8 @@ msgstr "Dadać značeńnie AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Režym sumiaščalnaści SQL"
@@ -6532,17 +6543,17 @@ msgid "Customize browse mode."
msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Query results operations"
msgid "Customize default options."
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6574,7 +6585,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6627,179 +6638,191 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Use text field"
+msgid "Navigation tree"
+msgstr "Vykarystoŭvać tekstavaje pole"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Use text field"
+msgid "Customize the navigation tree."
+msgstr "Vykarystoŭvać tekstavaje pole"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servery"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Relational display field"
msgid "Servers display options."
msgstr "Adlustravanaje pole suviazi"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Table options"
msgid "Tables display options."
msgstr "Opcyi tablicy"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Add new field"
msgid "Main panel"
msgstr "Dadać novaje pole"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
#, fuzzy
#| msgid "Microsoft Excel 2000"
msgid "Microsoft Office"
msgstr "Microsoft Excel 2000"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Staronka:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication"
msgstr "Aŭtentyfikacyja…"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication settings."
msgstr "Aŭtentyfikacyja…"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "Supastaŭleńnie padłučeńnia da MySQL"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Use text field"
msgid "Customize navigation panel"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Use text field"
msgid "Customize main panel"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "Server variables and settings"
msgid "SQL queries settings."
msgstr "Nałady i źmiennyja servera"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Use text field"
msgid "Customize startup page."
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database for user"
msgid "Database structure"
msgstr "Baza dadzienych dla karystalnika"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6807,203 +6830,203 @@ msgstr ""
msgid "Table structure"
msgstr "Baza dadzienych dla karystalnika"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Relacyjnaja schiema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Pamier papiery"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Use text field"
msgid "Customize text input fields."
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Tekst Texy!"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
#| msgid "Query results operations"
msgid "Customize default options"
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Farmat impartavanaha fajła"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Vykarystoŭvać klučavoje słova LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Paznačyć nazvy paloŭ u pieršym radku"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start."
msgstr "Kolkaść (zapytaŭ), jakija treba prapuścić ad pačatku"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Dadać značeńnie AUTO_INCREMENT"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -7011,50 +7034,50 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of databases displayed in database list."
msgstr "Kolkaść adkrytych tablic."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -7062,13 +7085,13 @@ msgid ""
"the navigation tree."
msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum items on first level"
msgstr "Maksymalny pamier dla časovych fajłaŭ sartavańnia"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -7076,99 +7099,99 @@ msgid ""
"tree."
msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of tables displayed in table list."
msgstr "Kolkaść adkrytych tablic."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Pakazać sietku"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Use text field"
msgid "Show logo in navigation panel."
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "The number of tables that are open."
msgid ""
@@ -7176,984 +7199,1038 @@ msgid ""
"display a filter box."
msgstr "Kolkaść adkrytych tablic."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Minimum number of items to display the filter box"
msgstr "Kolkaść adkrytych tablic."
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Minimum number of databases to display the database filter box"
msgstr "Kolkaść adkrytych tablic."
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Zahałovak tablicy"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Pakazać tablicy"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Pakazać sietku"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Pakazać sietku"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Pakazać sietku"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Pakazać pracesy"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Pakazać sietku"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Pakazać sietku"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Kolkaść adkrytych tablic."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analizavać tablicu"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Źmianić paradak tablicy"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Zahałovak tablicy"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Pierajmienavać tablicu ŭ"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Pieršasny kluč byŭ dadadzieny da %s."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Patokaŭ uznaŭleńnia"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Adlustravanaje pole suviazi"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Relational display field"
msgid "For display Options"
msgstr "Adlustravanaje pole suviazi"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Značeńnie sesii"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication method to use."
msgstr "Aŭtentyfikacyja…"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Niemahčyma załahavacca na server MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Luby chost"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Luby chost"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Nie źmianiać parol"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "imia bazy dadzienych"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizavać tablicu"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Źmiennyja"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "The number of fsync() writes done to the log file."
msgid "Enable SSL for connection to MySQL server."
msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Pakazvać kamentary kalonak"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defrahmentavać tablicu"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Vyrazy"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Vykarystoŭvać tablicy"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Vykarystoŭvać tablicu chostaŭ"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Kamentar da tablicy"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Pakazać infarmacyju pra PHP"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Pakazać stan zaležnych serveraŭ"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Pakazać adkrytyja tablicy"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Pakazać sietku"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "pa zapytu"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Pa zmoŭčańni"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8161,52 +8238,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8214,86 +8291,86 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Imia karystalnika:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Parol"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Execute bookmarked query"
msgid "Enter executes queries in console"
msgstr "Vykanać zapyt z zakładak"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8327,50 +8404,50 @@ msgstr "Aŭtentyfikacyja…"
msgid "Signon authentication"
msgstr "Aŭtentyfikacyja…"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV z vykarystańniem LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Specyfikacyja Open Document"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Inšy koler"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "Nałady ekspartu bazy dadzienych"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV dla dadzienych MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8401,7 +8478,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8481,7 +8558,7 @@ msgstr "Stvaryć tablicu"
msgid "Number of columns"
msgstr "Kolkaść paloŭ"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Niemahčyma zahruzić płahiny ekspartavańnia, kali łaska, praviercie "
@@ -8538,69 +8615,69 @@ msgstr "Tablic"
msgid "Format:"
msgstr "Farmat"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcyi pieraŭtvareńnia"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Radki"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Zachavać na servery ŭ tečcy %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Šablon nazvy fajła"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8615,84 +8692,96 @@ msgstr ""
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
"praviedzienyja nastupnyja źmieny: %3$s. Astatni tekst zastaniecca jak jość."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Kadyroŭka fajła:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Ścisk"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "archivavany ŭ zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "archivavany ŭ gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Zachavać jak fajł"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Stvaryć novuju tablicu ŭ BD %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "haryzantalna (paviernutyja zahałoŭki)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Zachavać jak fajł"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Vybierycie tablicu(y)"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Vybierycie tablicu(y)"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "imia bazy dadzienych"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "User name"
msgid "New table name"
msgstr "Imia karystalnika"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Nazvy kalonak"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9332,7 +9421,7 @@ msgid "Create an index on %s columns"
msgstr "Stvaryć indeks na %s kalonkach"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Schavać"
@@ -9481,11 +9570,6 @@ msgstr "Piat"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Adpravić"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9707,29 +9791,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Nazvy kalonak"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Padziei"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Funkcyi"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Pracedury"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Tablic"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9759,13 +9849,13 @@ msgstr "Vykarystoŭvać tekstavaje pole"
msgid "Reload navigation panel"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9773,26 +9863,26 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "table name"
msgid "Filter databases by name or regex"
msgstr "imia tablicy"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Zachavać jak fajł"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "table name"
msgid "Filter by name or regex"
msgstr "imia tablicy"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9830,7 +9920,7 @@ msgstr ""
msgid "Database operations"
msgstr "Nałady ekspartu bazy dadzienych"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -11121,26 +11211,26 @@ msgstr "Nazvy kalonak"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Niedapuščalny paremetar dla impartu dadzienych u CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Niekarektny farmat CSV-dadzienych u radku %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@@ -11581,63 +11671,63 @@ msgstr "Farmatuje tekst jak SQL-zapyt z padśviečanym syntaksisam."
msgid "Formats text as XML with syntax highlighting."
msgstr "Farmatuje tekst jak SQL-zapyt z padśviečanym syntaksisam."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Pamyłka: suviaź užo isnuje."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "Suviaź FOREIGN KEY była dadadzienaja"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Pamyłka: suviaź nie dadadzienaja."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "Pamyłka: suviaź nie dadadzienaja."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Unutranaja suviaź dadadzienaja"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Pamyłka: suviaź nie dadadzienaja."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "Suviaź FOREIGN KEY była dadadzienaja"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Pamyłka: suviaź nie dadadzienaja."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Pamyłka: suviaź nie dadadzienaja."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11739,54 +11829,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Pierajmienavać tablicu ŭ"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "niama apisańnia"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12611,7 +12707,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -18325,9 +18421,6 @@ msgstr "maksymum adnačasovych złučeńniaŭ"
#~ msgid "Reset"
#~ msgstr "Skinuć statystyku"
-#~ msgid "Show processes"
-#~ msgstr "Pakazać pracesy"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Skinuć"
diff --git a/po/bg.po b/po/bg.po
index 2c0998ace8..b29f68c1c4 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-05-23 22:10+0200\n"
"Last-Translator: Valentin Mladenov
- Control+кликване за премахване на колоната от ORDER BY "
"клаузата"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Щракване за маркиране/отмаркиране."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Щракнете двукратно за копиране името на колона."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Щракнете стрелката,
за да изберете колони."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Показване на всички"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2331,11 +2374,11 @@ msgstr ""
"редакция, отметката, връзките редактиране, копиране и изтриване може да не "
"работят след запазване."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr "Моля въведете валиден шеснадесетичен низ. Валидни символи са 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2343,139 +2386,139 @@ msgstr ""
"Наистина ли искате да видите всички редове? За една голяма таблица, това "
"може да блокира браузъра."
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Първоначално положение"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "Отмяна"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Прекъснати"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Успех"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Състояние на импорта"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Пуснете файловете тук"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Първо избетере база данни"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Можете също да редактирате повече стойности
като щракнете два пъти "
"директно върху тях."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Можете също да редактирате повече стойности
като щракнете директно върху "
"тях."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Към връзка:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Копиране името на колоната."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Кликване с десния бутон върху името на колоната, за да го копирате в "
"системния буфер."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Генериране на парола"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Генериране"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Смяна на парола"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Още"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Показване на панела"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Скриване на панела"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Показване на скритото навигационно дърво."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Свързване с главния панел"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Премахване от главния панел"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"За да филтрирате всички бази данни на сървъра, натиснете Enter, след като "
"въведете филтър"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"За да филтрирате всички %s в базата данни, натиснете Enter, след като "
"въведете филтър"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "Таблици"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "Изглед"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "Процедури"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "събития"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "Функции"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"Исканата страница не беше намерена в хронологията, може би е с изтекла "
"валидност."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2485,472 +2528,472 @@ msgstr ""
"версия е %s, излязла на %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", последната стабилна версия:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "актуално"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Създаване на изглед"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Изпращане на доклад с грешки"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "представи доклад за грешка"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Промяна на рапорт настройки"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Показване детайли за рапорта"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Засечени са някой грешки на сървъра!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Моля погледнете в края на този прозорец."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Игнориране на всички"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Изпълняване на заявката отново?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Наистина ли искате да изтриете отметката: \"%s\"?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Executed queries"
msgid "%s queries executed %s times in %s seconds."
msgstr "Изпълнени заявки"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Коментари към таблицата"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Скриване резултати от търсенето"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Преден"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Следващ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Днес"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "януари"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "февруари"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "март"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "април"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "май"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "юни"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "юли"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "август"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "септември"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "октомври"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "ноември"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "декември"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "яну"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "фев"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "март"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "май"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "юни"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "юли"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "септ"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "ное"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "дек"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "неделя"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "понеделник"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "вторник"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "сряда"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "четвъртък"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "петък"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "събота"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "нд"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "пн"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "вт"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "ср"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "чт"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "пт"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "сб"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "нд"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "пн"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "вт"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "ср"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "чт"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "пт"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Сед"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "календар-месец-година"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "няма"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Час"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "минута"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "секунда"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "От текстовото поле"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid email address"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "Моля, въведете валиден номер на порт!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date ( ISO )"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "Моля, въведете валиден номер на порт!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "Моля, въведете валиден номер на порт!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "Моля, въведете валидна дължина!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter the same value again"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter at least {0} characters"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value between {0} and {1}"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Моля, въведете валидна дължина!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date or time"
msgstr "Моля, въведете валидно име на страница"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Моля, въведете валиден номер на порт!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3023,18 +3066,18 @@ msgstr "на час"
msgid "per day"
msgstr "на ден"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Текущия файл с настройки (%s) е недостъпен."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Неподходящи права на файлът с настройки, в него не трябва да може да пише "
"всеки!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Размер шрифт"
@@ -3053,7 +3096,7 @@ msgid "Requery"
msgstr "Подзаявка"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3255,7 +3298,7 @@ msgid "Count:"
msgstr "Kолона"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3454,7 +3497,7 @@ msgstr "Показване на белязка"
msgid "Delete bookmark"
msgstr "Изтриване релация"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3462,19 +3505,19 @@ msgstr ""
"Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран "
"правилно)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Сървърът не отговаря."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Проверете правата на папката, съдържаща БД."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Подробности…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3548,6 +3591,16 @@ msgstr "Думите трябва да се разделят с интервал
msgid "Inside tables:"
msgstr "В таблици:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Маркиране всички"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Размаркиране всички"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "В колона:"
@@ -3605,7 +3658,7 @@ msgid "All"
msgstr "Всички"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Брой редове:"
@@ -3922,7 +3975,7 @@ msgstr ""
"бъде премахнат."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Сървър"
@@ -3933,34 +3986,13 @@ msgstr "Сървър"
msgid "View"
msgstr "Изглед"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Структура"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4057,8 +4089,8 @@ msgstr "Колони в текство поле"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "БД"
@@ -4173,7 +4205,7 @@ msgid "Recent"
msgstr "Изчистване"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4252,16 +4284,6 @@ msgstr "Свръзки"
msgid "Sorting"
msgstr "Сортиране"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Таблици"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Координатор на транзакциите"
@@ -4782,7 +4804,7 @@ msgstr "Максимум: %s%s"
msgid "MySQL said: "
msgstr "MySQL отговори: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Обяснение на SQL"
@@ -4799,7 +4821,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Без PHP код"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Създаване на PHP код"
@@ -4918,17 +4940,6 @@ msgstr "Използване тази стойност"
msgid "Rows"
msgstr "Редове"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Данни"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5103,7 +5114,7 @@ msgstr "Сървър"
msgid "Invalid authentication method set in configuration:"
msgstr "Невалиден метод за удостоверяване в конфогурацията:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5111,24 +5122,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Осъвременете до %s %s или по-нова."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "възможен пробив в сигурността"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "цифров ключ открит"
@@ -5373,7 +5384,7 @@ msgid "Set value: %s"
msgstr "Стойност: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Стойност по подразбиране"
@@ -5878,7 +5889,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Максимално време за изпълнение"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -5888,7 +5899,7 @@ msgstr "Добавяне на израз %s"
msgid "Save as file"
msgstr "Изпращане"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Знаков набор на файла"
@@ -5915,17 +5926,17 @@ msgstr "Компресия"
msgid "Put columns names in the first row"
msgstr "Поставяне имената на полетата в първи ред"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Columns enclosed with:"
msgid "Columns enclosed with"
msgstr "Колоните са оградени от:"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Columns escaped with:"
msgid "Columns escaped with"
@@ -5945,16 +5956,16 @@ msgstr "Замяна NULL с:"
msgid "Remove CRLF characters within columns"
msgstr "Премахване CRLF знаци от колони"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "Колоните завършват с"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated with:"
msgid "Lines terminated with"
@@ -6026,7 +6037,7 @@ msgid "Save on server"
msgstr "Запазване на сървъра"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Презаписване на съществуващите файл(ове)"
@@ -6043,8 +6054,8 @@ msgstr "Добавяне AUTO_INCREMENT стойност"
msgid "Enclose table and column names with backquotes"
msgstr "Ограждане на имената на таблици и полета с обратни апострофи"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Режим на съвместимост на SQL"
@@ -6172,17 +6183,17 @@ msgid "Customize browse mode."
msgstr "Персонализиране на преглеждането"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "Персонализиране настройките по подразбиране"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6216,7 +6227,7 @@ msgstr "Настройки по подразбиране на експорта"
msgid "Customize default export options."
msgstr "Персонализиране настройките по подразбиране на експорта"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Свойства"
@@ -6274,48 +6285,60 @@ msgstr "Управляваща рамка"
msgid "Customize appearance of the navigation panel."
msgstr "Персонализиране изгледа на рамката за навигация"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation frame"
+msgid "Navigation tree"
+msgstr "Управляваща рамка"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation frame"
+msgid "Customize the navigation tree."
+msgstr "Персонализиране рамката за навигация"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Сървъри"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "Настройки показване сървъри"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "Настройки показване таблици"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "Главна рамка"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Други основни настройки"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "Настройки, които не са за другаде"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Заглавие в браузъра"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6329,11 +6352,11 @@ msgstr ""
"[doc@cfg_TitleTable]документацията[/doc] за магическите низове и техните "
"стойности."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Сигурност"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6345,25 +6368,25 @@ msgstr ""
"Обърнете внимание, че phpMyAdmin е само потребителски интерфейс и неговите "
"възможности не ограничават MySQL"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Основни настройки"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Удостоверяване"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "Настройки по удостоверяване"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Сървърна конфигурация"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6375,28 +6398,28 @@ msgstr ""
"Разширена конфигурация на сървъра, не променяйте тези настройки, освен ако "
"знаете за какво са"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "Параметри за връзка със сървъра"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Хранилище за конфигурация"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Следене за промени"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6404,125 +6427,125 @@ msgstr ""
"Проследяване на промените, правени в БД. Изисква phpMyAdmin хранилище за "
"конфигурация."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Персонализиране настройките на експорта"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Персонализиране настройките по подразбиране на импорта"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
msgstr "Персонализиране рамката за навигация"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "Персонализиране основната рамка"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL заявки"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL прозорец за заявки"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "Персонализиране на връзките показвани след изпълнение на SQL заявка"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "Настройки на SQL заявките"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Начало"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "Персонализиране началната страница"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "БД структура"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Структура на таблица"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Подпрозорци"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "Изберете поведението на разделите"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Показване схема на релациите"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Размер на хартията"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Текстови полета"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "Персонализиране на текстовите полета"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! текст"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Персонализиране настройките по подразбиране"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Предупреждения"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Скрива някои от предупрежденията, показвани от phpMyAdmin"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6534,131 +6557,131 @@ msgstr ""
"Включване на [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] компресия при "
"импорт и експорт"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Допълнителни параметри за iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Формат на импортирания файл"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Използване на ключовата дума LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Имена на колони в първи ред"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Празните редове да не бъдат импортирани"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Импортиране на валути ($5.00 към 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Импортиране процентите като десетични числа (12.00% към .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "Брой заявки, които да бъдат пропуснати от началото"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Първоначално състояние за плъзгачите"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "Колко реда да бъдат импортирани наведнъж"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Броят добавени редове"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Ограничаване знаците в колона"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Изтриване всички бисквитки при изход"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6670,11 +6693,11 @@ msgstr ""
"Определя дали да се припомни или не потребителското име от предишен вход в "
"режим на удостоверяване с бисквитка"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Запомняне потребителското име"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6682,96 +6705,96 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Валидност на бисквитката за вход"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Двойни текстови полета за колони тип LONGTEXT"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "По-голямо текстово поле за LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Максимален брой скоро отваряни таблици; 0 за забрана"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of records saved in \"table_uiprefs\" table"
msgid "Maximum number of databases displayed in database list."
msgstr "Максимален брой записи в таблица \"table_uiprefs\""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for input field"
msgid "Maximum items on first level"
msgstr "Максимален размер на текстовите полета"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of records saved in \"table_uiprefs\" table"
msgid "Maximum number of tables displayed in table list."
msgstr "Максимален брой записи в таблица \"table_uiprefs\""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
@@ -6783,211 +6806,267 @@ msgstr ""
"Броят байтове, които скрипт може да заеме, напр. [kbd]32М[/kbd] ([kbd]0[/"
"kbd] за без ограничение)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Ограничение на паметта"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Показване на скритото навигационно дърво."
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "Показване логото в лявата рамка"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Показване лого"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "Адрес, към който ще сочи логото от рамката на навигацията"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Връзка на логото"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Цел за връзката на логото"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel."
msgstr "Показване изборът на сървър в лявата рамка отгоре"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Цел на пиктограмата за бърз достъп"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Цел на пиктограмата за бърз достъп"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
msgstr "Низ, който разделя БД в отделни разклонения на дърво"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Разделител на дървото на БД"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
msgstr "Низ, който разделя таблици в отделни разклонения на дърво"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Разделител на дървото на таблици"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Максимална дълбочина на дървото на таблиците"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight row pointed by the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "Маркиране редовете, посочени с мишка"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Включване синтактичното оцветяване"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Заглавие на таблицата"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Showing tables"
+msgid "Show tables in tree"
+msgstr "Показване таблици"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Показване на скритото навигационно дърво."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Показване на версиите"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Показване на скритото навигационно дърво."
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Показване поле с функциите"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "MySQL процеси"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Показване на версиите"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Показване на скритото навигационно дърво."
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "Максимален брой скоро отваряни таблици; 0 за забрана"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Максимален брой скоро отваряни таблици; 0 за забрана"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Последно отваряни таблици"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
#, fuzzy
#| msgid "These are Edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links."
msgstr "Това са връзките Редакция, Копиране и Изтриване"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Къде да бъдат показани връзките в ред от таблица"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
msgstr "Използване естествен ред за сортиране на имена на таблици и БД"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Естествен ред"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Използване само пиктограми, само текст или и двете"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Заглавие на таблицата"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Използване GZip буфериране за увеличаване скоростта на HTTP трансфери"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip буфериране"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -6999,21 +7078,21 @@ msgstr ""
"[kbd]ИНТЕЛИГЕНТНО[/kbd] - т.е. низходящ ред за колони тип TIME, DATE, "
"DATETIME и TIMESTAMP, иначе възходящ ред"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Ред за сортиране по подразбиране"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Използване на постоянни връзки към MySQL БД"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Постоянни връзки"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7025,11 +7104,11 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7040,11 +7119,11 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7055,228 +7134,228 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "Разрешаване показването на всички редове"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Защитаване на двоичните колони"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Постоянна история на заявките"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Колко заявки да се съхраняват в историята"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Дължина на историята на заявки"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "При преглед на таблици, сортирането на всяка да бъде запомнено"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Запомняне сортирането на таблици"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Ред за сортиране по подразбиране"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Повтаряне на заглавката"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Релационна схема"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Настройки показване сървъри"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Папка на сървъра, в която експортите да бъдат записвани"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Оставете празно, ако не се използва"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Оставете празно, за стойности по подразбиране"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Разрешаване вход без парола"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Разрешаване вход с потребител root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Сесийна стойност"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Метод за удостоверяване"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Тип удостоверяване"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Таблица за белязки"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Компресиране връзката към MySQL сървър"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Компресиране връзката"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Тип връзки"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Парола на контролен потребител"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7289,11 +7368,11 @@ msgstr ""
"Специален MySQL потребител с ограничени права, [a@http://wiki.phpmyadmin.net/"
"pma/controluser]още информация[/a]"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Контролен потребител"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7305,11 +7384,11 @@ msgstr ""
"Алтернативен хост, на който има хранилище с конфигурация; оставете празно, "
"за да използвате вече дефиниран хост"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Контролен хост"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7322,19 +7401,19 @@ msgstr ""
"Алтернативен хост, на който има хранилище с конфигурация; оставете празно, "
"за да използвате вече дефиниран хост"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "Контролен хост"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Скриване БД, съответстващи на регулярен израз (PCRE)"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7343,166 +7422,166 @@ msgstr ""
"bugs/2606/]системата за проследяване на дефекти на PMA[/a] и [a@http://bugs."
"mysql.com/19588]дефекти на MySQL[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Забрана използването на INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Скриване БД"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Адрес за изход"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Показване таблицата със състоянието на подчинените"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Колони в текство поле"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Опит за връзка без парола"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Връзка без парола"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Показване само на изброените БД"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "Оставете празно, ако не използвате удостоверяване от настройките"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Парола за удостоверяване от настройките"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Име БД"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Порт, на който MySQL сървърът слуша, оставете празно за този по подразбиране"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Порт на сървъра"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Последно отваряна таблица"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Променливи"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Таблица за връзка"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7514,66 +7593,66 @@ msgstr ""
"За примери посетете [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]видове удостоверяване[/a]"
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Сокет, на които MySQL сървърът слуша, оставете празно за този по подразбиране"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Сокет на сървъра"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Разрешаване на SSL връзка към MySQL сървър"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Използване SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Показване таблицата с колоните"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Таблица с визуалните настройки"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7581,11 +7660,11 @@ msgstr ""
"Дали израз DROP DATABASE IF EXISTS да бъде добавян като първи ред в дневника "
"при създаване на БД."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Добавяне DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7593,11 +7672,11 @@ msgstr ""
"Дали израз DROP TABLE IF EXISTS да бъде добавян като първи ред в дневника "
"при създаване на таблица."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Добавяне DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7605,89 +7684,89 @@ msgstr ""
"Дали израз DROP VIEW IF EXISTS да бъде добавян като първи ред в дневника при "
"създаване на изглед."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Добавяне DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Изрази, които да бъдат проследявани"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Автоматично създаване на версии"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Таблица за съхранение на потребителските предпочитания"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Използване таблиците"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "От таблица Host"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7695,36 +7774,36 @@ msgstr ""
"Разбираемо за потребителя описание на този сървър. Ако е празно ще бъде "
"показан хоста."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Описателно име на този сървър"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Дали на потребителя да бъде показван бутон \"показване всички\""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Разрешаване показването на всички редове"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Показване формуляр за смяна на парола"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Показване формуляр за създаване на БД"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -7733,13 +7812,13 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на създаването за всички "
"таблици"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Коментари към таблицата"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -7748,11 +7827,11 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на създаването за всички "
"таблици"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Показване времево клеймо на създаването"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -7762,11 +7841,11 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на последната промяна за "
"всички таблици"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Показване времево клеймо на последната промяна"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -7776,11 +7855,11 @@ msgstr ""
"Показване или скриване на колона с времево клеймо на последната проверка за "
"всички таблици"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Показване времево клеймо на последната проверка"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -7792,31 +7871,31 @@ msgstr ""
"Определя дали първоначално да бъдат показани типовете на полетата при "
"редакция/вмъкване"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Показване типовете полета"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Показване на поле с функциите при редакция/вмъкване"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Показване поле с функциите"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "Дали да бъде показвана подсказка"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Показване подсказка"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7828,15 +7907,15 @@ msgstr ""
"Показва връзка към изхода на [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Показване връзка към phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Показва подробна информация за MySQL сървъра"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7845,11 +7924,11 @@ msgid ""
msgstr ""
"Определя дали SQL заявките, генерирани от phpMyAdmin да бъдат показвани"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Показване на SQL заявките"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -7858,11 +7937,11 @@ msgid ""
msgstr ""
"Определя дали прозорецът със заявката да остане екрана след изпращането му"
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Запазване отворен прозореца за заявки"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -7870,20 +7949,20 @@ msgstr ""
"Разрешаване показването на статистика за таблици и БД (напр. заемано "
"пространство)"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Показване статистика"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Пропускане заключени таблици"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7894,11 +7973,11 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7910,61 +7989,61 @@ msgid ""
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Валидност на бисквитката за вход"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Колони в текство поле"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Реда в текстово поле"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "Заглавие на прозореца на браузъра, когато е избрана БД"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "Заглавие на прозореца на браузъра, когато не е избрано нищо"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Заглавие по подразбиране"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "Заглавие на прозореца на браузъра, когато е избран сървър"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "Заглавие на прозореца на браузъра, когато е избрана таблица"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7972,57 +8051,57 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr ""
"Папка на сървъра, в която можете да качвате файлове, за да бъдат импортирани"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Папка за качване на файлове"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Проверка за обновление"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Enables check for latest version on main phpMyAdmin page"
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Позволява проверка за обновления на страницата на phpMyAdmin"
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Проверка за обновления"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8030,34 +8109,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Потребителско име"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Парола"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8069,55 +8148,55 @@ msgstr ""
"Включване на [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"компресия при импорт и експорт"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Порт на сървъра"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Изпълнени заявки"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8145,46 +8224,46 @@ msgstr "HTTP удостоверяване"
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV с LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document Spreadsheet"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Бърз"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Потребителски"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Опции за експорт на БД"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel данни"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8215,7 +8294,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8290,7 +8369,7 @@ msgstr "Създаване таблица"
msgid "Number of columns"
msgstr "Брой колони"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Приставките за експортиране не могат да бъдат заредени, моля проверете "
@@ -8335,62 +8414,62 @@ msgstr "Таблица(и):"
msgid "Format:"
msgstr "Формат:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Специфични настройки:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Редове:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Схема на ред(ове)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Ред започва от:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Схема на всички редове"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Изход:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Записване на сървъра в директория %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Шаблон на файловото име:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ ще стане името на сървъра"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ ще стане името на БД"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ ще стане името на таблицата"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8398,72 +8477,84 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "прилагане и към бъдещи експорти"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Знаков набор на файла:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Компресия:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zip-нато"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzip-нато"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Показване на изхода като текст"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Exporting rows from \"%s\" table"
+msgid "Export databases as separate files"
+msgstr "Експортиране на редове от таблица \"%s\""
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Експортиране заглавки на таблици"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Запазване на изхода във файл"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Избор на таблици"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Избор на таблици"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Ново име на БД"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New page name: "
msgid "New table name"
msgstr "Име: "
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "Копиране името на колоната"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9027,7 +9118,7 @@ msgid "Create an index on %s columns"
msgstr "Създаване на индекс върху %s колони"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Скриване"
@@ -9169,11 +9260,6 @@ msgstr "От"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Изпълнение"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add table prefix"
@@ -9391,29 +9477,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names: "
+msgid "Groups:"
+msgstr "Имена на колони: "
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Събития"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Функции"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Процедури"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Таблици"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "Views"
msgid "Views:"
@@ -9443,39 +9535,39 @@ msgstr "Управляваща рамка"
msgid "Reload navigation panel"
msgstr "Управляваща рамка"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Filter databases by name"
msgid "Filter databases by name or regex"
msgstr "филтър по таблица"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Изпращане"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Filter tables by name"
msgid "Filter by name or regex"
msgstr "филтър по таблица"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9513,7 +9605,7 @@ msgstr "Нов"
msgid "Database operations"
msgstr "Опции за експорт на БД"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -10778,26 +10870,26 @@ msgstr "Имена на колони: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11195,61 +11287,61 @@ msgstr "Форматира текст като SQL заявка със синт
msgid "Formats text as XML with syntax highlighting."
msgstr "Форматира текст като SQL заявка със синтактично оцветяване."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Грешка: Релацията вече съществува."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY релация е добавена"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Грешка: Релацията не е добавена."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Грешка: Релацията е изключена!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Добавена е вътрешна релация"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Грешка: Релацията не е добавена."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "FOREIGN KEY релация е добавена"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Грешка: Релацията не е добавена."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Грешка: Релацията не е добавена."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11349,20 +11441,26 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Запомняне сортирането на таблици"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Бързи стъпки за настройка на разширените свойства:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11370,22 +11468,22 @@ msgstr ""
"Включване на допълнителните функции в конфигурационния файл (config."
"inc.php), започнете с примера в config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "няма описание"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11393,14 +11491,14 @@ msgid ""
"configuration storage there."
msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12185,7 +12283,7 @@ msgstr "Няма събития."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current Server"
msgid "Current Server:"
@@ -16844,9 +16942,6 @@ msgstr "concurrent_insert e 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Изтриване на проследената информация за тази таблица"
-#~ msgid "Show versions"
-#~ msgstr "Показване на версиите"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -17851,9 +17946,6 @@ msgstr "concurrent_insert e 0"
#~ msgid "Reset"
#~ msgstr "Изчистване"
-#~ msgid "Show processes"
-#~ msgstr "MySQL процеси"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Изчистване"
diff --git a/po/bn.po b/po/bn.po
index d7bdec2f94..7f28b31a6e 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-11-05 10:27+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility"
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "স্তম্ভ খোলা বন্ধ করতে চাইলে তীর চিহ্নটি ক্লীক করুন"
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "সব দেখাও"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2439,167 +2482,167 @@ msgstr ""
"এই টেবিলে কোন অনন্য স্তম্ভ নাই। সংরক্ষনের পরে সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার "
"জন্য সংযোগগুলো কাজ করবে না।"
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "প্রকৃত লেখা"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "বাতিল"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "বাতিলকৃত"
-#: js/messages.php:494
+#: js/messages.php:495
#, fuzzy
#| msgid "Success."
msgid "Success"
msgstr "সফল।"
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "আমদানি সর্ম্পকিত স্বাভাবিক"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "লগ ফাইলের স্থান"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "টেবল নির্বাচন"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "আপনি প্রায় সমস্ত তথ্য দুই বার ক্লীক করে সরাসরি সম্পাদনা করতে পারবেন।"
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "আপনি প্রায় তথ্য সরাসরি ক্লীক করে সম্পাদনা করতে পারবেন।"
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
msgstr "সংযোগে যাও"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Copy column name"
msgid "Copy column name."
msgstr "স্তম্ভের নাম প্রতিলিপি"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "স্তম্ভের নামটির উপর ডান ক্লীক করুন ওটা ক্লীপর্বোডে প্রতিলিপি করার জন্য।"
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "পাসওর্য়াড উৎপাদন কর"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "উৎপাদন কর"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "পাসওর্য়াড পরিবর্তন"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "অধিক"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "প্যানেল দেখাও"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "ইনডেক্স প্যানেল"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show hidden navigation tree items."
msgstr "চলাচল ফ্রেইমে লোগো দেখাও"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main panel"
msgid "Link with main panel"
msgstr "প্রধান ফ্রেম পরিবর্তন"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main panel"
msgid "Unlink from main panel"
msgstr "প্রধান ফ্রেম পরিবর্তন"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "টেবল"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "ভিউসমূহ"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "প্রোসিডিউরস"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "ইভেন্ট"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "ফাংশনসমূহ"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "পাতাটি হিস্টোরীতে পাওয়া যায়নি, সম্ভবত নষ্ট হয়েগেছে।"
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2609,477 +2652,477 @@ msgstr ""
"%s, বেরিয়েছে %s।"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", সর্বশেষ সুস্থিত সংস্করন:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "তারিখ পর্যন্ত"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "ভিউ তৈরী"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "ভুলের প্রতিবেদন পাঠাও"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "ভুলের প্রতিবেদন দাখিল"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr "একটি মারাত্মক জাভা স্ত্রিপট ভুল হয়েছে। আপনি কি এর প্রতিবেদন পাঠাতে চান?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "প্রতিবেদন সেটিংস পরিবর্তন"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "প্রতিবেদনের বিশদ দেখাও"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "উপেক্ষা"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "এই অনুসন্ধানটি আবার দেখাও"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to delete user group \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "আপনি কি নিশ্চিত ভাবে \"%s\" ব্যাবহারকরী দল মুছতে চান?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL query"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "টেবলের মন্তব্য"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "খোজাঁর ফলাফল লুকাও"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "পূর্ববর্তী"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "পরবর্তী"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "আজ"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "জানুয়ারী"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "ফেব্রুয়ারী"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "মার্চ"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "এপ্রিল"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "মে"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "জুন"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "জুলাই"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "অগাষ্ট"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "সেপ্টেম্বর"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "অক্টোবর"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "নভেম্বর"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "ডিসেম্বর"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "জান"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "ফেব"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "মার"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "এপ্রি"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "মে"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "জুন"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "জুল"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "আগ"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "সেপ"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "অক্ট"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "নভে"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "ডিসে"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "রবিবার"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "সোমবার"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "মঙ্গলবার"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "বুধবার"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "বৃহস্পতিবার"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "শুক্রবার"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "শনিবার"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "রবি"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "সোম"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "মঙ্গল"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "বৃধ"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "বৃহস্পতি"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "শুক্র"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "শনি"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "রবি"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "সোম"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "মঙ্গ"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "বুধ"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "বৃহ"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "শুক্র"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "শনি"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "সপ্তাহ"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "বর্ষপঞ্জি-মাস-বছর"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "- কিছু না -"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "ঘন্টা"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "মিনিট"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "সেকেন্ড"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid email address"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date ( ISO )"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "একটি কার্যকর দৈর্ঘ্য দিন!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter the same value again"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter at least {0} characters"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a value between {0} and {1}"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "একটি কার্যকর দৈর্ঘ্য দিন!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a value greater than or equal to {0}"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date or time"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "একটি কার্যকর নাম্বার দিন!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3150,16 +3193,16 @@ msgstr "প্রতি ঘন্টায়"
msgid "per day"
msgstr "প্রতি দিন"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "বর্তমান কনফিগারেশন ফাইল (%s) টি পড়া যাচ্ছে না।"
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "কনফিগারেশন ফাইলে ভুল অনুমতি দেয়া, ওটা লেখার মত নয়"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "অক্ষরের আকার"
@@ -3180,7 +3223,7 @@ msgid "Requery"
msgstr "সহ-অনুসন্ধান"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3402,7 +3445,7 @@ msgid "Count:"
msgstr "অংক"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3602,26 +3645,26 @@ msgstr "বুকর্মাক দেখাচ্ছে"
msgid "Delete bookmark"
msgstr "সর্ম্পক মুছা"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"সার্ভারটি সাড়া দিচ্ছে না। (বা স্থানীয় সার্ভারটির সকেট সঠিকভাবে কনফিগার করা হয়নি)।"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "সার্ভারটি সাড়া দিচ্ছে না।"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "ডাটাবেইজ ডিরেক্টরির অধিকারসমূহ পরীক্ষা করুন।"
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "বিশদ…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr "নিয়ন্ত্রক ব্যবহারকারীর জন্য নির্ধারিত কনফিগারেশন সংযোগে ব্যার্থ হয়েছে।"
@@ -3695,6 +3738,16 @@ msgstr "শব্দগুলো ফাকা (\" \") বর্ণ দিয়ে
msgid "Inside tables:"
msgstr "টেবিলের ভিতরে:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "সবগুলো নির্বাচন"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "সবগুলো অনির্বাচন"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "স্তম্ভের ভিতরে:"
@@ -3752,7 +3805,7 @@ msgid "All"
msgstr "সবগুলো"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "রো সংখ্যা:"
@@ -4047,7 +4100,7 @@ msgid ""
msgstr "ইনডেক্স %1$s এবং %2$s এক সমান মনে হয় এবং যে কোন একটি মুছে ফেলুন।"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "সার্ভার"
@@ -4058,34 +4111,13 @@ msgstr "সার্ভার"
msgid "View"
msgstr "দেখা"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "গঠন"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "এসকিউএল"
@@ -4182,8 +4214,8 @@ msgstr "টেক্সএরিয়া স্তম্ভ"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "ডাটাবেইজ"
@@ -4298,7 +4330,7 @@ msgid "Recent"
msgstr "পূর্বাবস্থায়"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4377,16 +4409,6 @@ msgstr "সংযোগসমূহ"
msgid "Sorting"
msgstr "গুছানো"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "টেবল"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "লেনদেন সমন্বয়কারী"
@@ -4942,7 +4964,7 @@ msgstr "সবোর্চ্চ: %s%s"
msgid "MySQL said: "
msgstr "MySQL বলেছে: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL এর ব্যাখা"
@@ -4959,7 +4981,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "পিএইছপি কোড ছাড়া"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "পিএইছপি কোড তৈরী কর"
@@ -5076,17 +5098,6 @@ msgstr "এই মানটি ব্যবহার কর"
msgid "Rows"
msgstr "সারির #"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "তথ্য"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5257,7 +5268,7 @@ msgstr "সার্ভার %d"
msgid "Invalid authentication method set in configuration:"
msgstr "কনফিগারেশনে অকার্যকর প্রমাণীকরন পদ্ধতি:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5265,24 +5276,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "আপনি অবশ্যই %s %s বা পরের কোন সংস্করনে আপগ্রেড করবেন।"
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "ভুল: টোকেন মিলে নাই"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS পুন লিখনের চেষ্টা"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "সাম্ভাব্য বিপদের সুযোগ"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "সংখ্যা কী সনাক্ত করা গেছে"
@@ -5521,7 +5532,7 @@ msgid "Set value: %s"
msgstr "মান সেট কর:%s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "স্বাভাবিক মান ফিরিয়ে আন"
@@ -6003,7 +6014,7 @@ msgstr "একটি স্ক্রীপট চলার সময় (সেক
msgid "Maximum execution time"
msgstr "সম্পাদনের সর্বোচ্চ সময়"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -6013,7 +6024,7 @@ msgstr "%s স্টেটমেন্ট যোগ কর"
msgid "Save as file"
msgstr "ফাইল এর মত সংরক্ষন"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "ফাইলের বর্ণরাশি"
@@ -6040,15 +6051,15 @@ msgstr "সংকোচন"
msgid "Put columns names in the first row"
msgstr "স্তম্ভের নাম প্রথম রোতে দাও"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "স্তম্ভ ঘেরার জন্য"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "স্তম্ভ এস্কেপডের উপকরণ"
@@ -6064,14 +6075,14 @@ msgstr "নাল প্রতিস্থাপিত হবে"
msgid "Remove CRLF characters within columns"
msgstr "স্তম্ভের CRLF বর্ণ মুছ"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "স্তম্ভ শেষ হবে"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "লাইন শেষ হবে"
@@ -6141,7 +6152,7 @@ msgid "Save on server"
msgstr "সার্ভারে সংরক্ষন কর"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "পূর্বের ফাইলটিতে রাখ"
@@ -6158,8 +6169,8 @@ msgstr "AUTO_INCREMENT যোগ কর"
msgid "Enclose table and column names with backquotes"
msgstr "টেবল এবং স্তম্ভের নামা backquotes দ্বারা আবদ্ধ কর"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL উপযুক্ততার ধরন"
@@ -6280,15 +6291,15 @@ msgid "Customize browse mode."
msgstr "ব্রাউজ পদ্ধতি পরিবর্তন।"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "স্বাভাবিক অপশনগুলো পরিবর্তন।"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "কমা দ্বারা আলাদা করা মান"
@@ -6316,7 +6327,7 @@ msgstr "রফতানী সর্ম্পকিত স্বাভাবি
msgid "Customize default export options."
msgstr "স্বাভাবিক রফতানী অপশনগুলো পরিবর্তন।"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "বিষয়াদি"
@@ -6361,40 +6372,52 @@ msgstr "চলাচলের ফ্রেম"
msgid "Customize appearance of the navigation panel."
msgstr "চলাচলের ফ্রেম দেখার বিষয়গুলো পরিবর্তন।"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "চলাচলের ফ্রেম"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "চলাচলের ফ্রেম পরিবর্তন"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "সার্ভার"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "সার্ভারের প্রর্দশন অপশনগুলো।"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "টেবল প্রর্দশনের অপশনগুলো।"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "প্রধান ফ্রেম"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "মাইক্রোসফট অফিস"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "অন্যান্য প্রধান সেটিংস"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "যে সেটিংগুলো অন্য কোথাও খাপ খায় না।"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "পাতার শিরোনাম"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6407,11 +6430,11 @@ msgstr ""
"ব্রাউজারের শিরোনামের লেখাটি দিন। বিশেষ মান নেওয়ার জন্য কি ব্যবহার করতে হবে "
"জানার জন্য [doc@cfg_TitleTable]documentation[/doc] দেখুন।"
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "নিরাপত্তা"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6419,37 +6442,37 @@ msgstr ""
"মনে রাখবেন phpMyAdmin শুধুই একটি ব্যবহারকারীর সঙ্গে সংযোগ উপায় এবং এটি কোনভাবেই "
"MySQL এর বিষয়াদি নির্দিষ্ট করে না।"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "প্রাথমিক সেটিংস"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "প্রমাণীকরণ"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "প্রমানীকরণ সেটিংস।"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "সার্ভার করফিগারেশন"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr "উন্নত সার্ভার কনফিগারেশন, এগুলো কি তা না জেনে পরিবর্তন করবেন না।"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "সার্ভার সংযোগের তথ্যগুলো দিন।"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "কনফিগারেশন মজুদ ব্যবস্থা"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6458,120 +6481,120 @@ msgstr ""
"অন্যান্য অতিরিক্ত সুবিধাদির জন্য phpMyAdmin কনফিগারেশন মজুদ ব্যবস্থা কনফিগার করন, "
"সহায়িকার [doc@linked-tables]phpMyAdmin configuration storage[/doc]দেখুন।"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "পরিবর্তন ট্রেকিং"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
"ডাটাবেইজের পরিবর্তন ট্রেকিং করার জন্য phpMyAdmin কনফিগারেশন মজুদ ব্যবস্থা প্রয়োজন।"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "রফতানী অপশন পরিবর্তন"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "আমদানির স্বাভাবিক বিষয়গুলো পরিবর্তন"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "চলাচলের ফ্রেম পরিবর্তন"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "প্রধান ফ্রেম পরিবর্তন"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL অনুসন্ধান"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL অনুসন্ধান বক্স"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "পরিবর্তিত সংযোগগুলো SQL অনুসন্ধান বক্সে দেখাচ্ছে।"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "SQL অনুসন্ধান সেটিংস।"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "আরম্ভ কর"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "প্রথম পাতাটি পরিবর্তন কর।"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "ডাটাবেইজ সার্ভার"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr "ডাটাবেইজ গঠনের সাথে বিশদ কি দেখাবে তা পছন্দ করুন (টেবলের তালিকা)।"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "টেবলের জন্য টেবলের গঠন"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "টেবল গঠনের সেটিংস (স্তম্ভের তালিকা)।"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "ট্যাবসমূহ"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "ট্যাবগুলো কিভাবে কাজ করবে পছন্দ করুন।"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "সর্ম্পকের রূপরেখা প্রদর্শন কর"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "পাতার আকার"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "অক্ষরের ক্ষেত্র"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "অক্ষর দেওয়ার ক্ষেত্রটি পরিবর্তন করুন।"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! লেখা"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "স্বাভাবিক অপশনগুলো পরিবর্তন"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "সর্তকতা"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "phpMyAdmin এর দেখানো কিছু সতর্কবার্তা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6579,15 +6602,15 @@ msgstr ""
"আমদানি রফতানীর জন্য [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] সংকুচন "
"কার্যকর কর।"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "জিজিপ"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "iconv'র জন্য অতিরিক্ত প্যারামিটার"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6595,11 +6618,11 @@ msgstr ""
"যদি কার্যকর করা হয় phpMyAdmin multiple-statement অনুসন্ধানগুলো গননা করবে যদি কোন "
"একটি অনুসন্ধান ব্যার্থও হয়।"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "multiple-statement এর ভুল উপেক্ষা কর"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6608,25 +6631,25 @@ msgstr ""
"নিধারিত শেষ হয়ে এলে আমদানি বন্ধ করার অনুমোদন। এটা বড় ফাইল আমদানির একটি ভাল "
"উপায়, যদিও এটি কাজ বন্ধ রাখতে পারে।"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "আংশিক আমদানি: বাধা অনুমোদিত"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "ভুল হলেও ইনর্সাট বাতিল করবে না"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6634,67 +6657,67 @@ msgstr ""
"স্বাভাবিক গঠন: মনে রাখবেন এই তালিকাটি স্থানের উপর নির্ভরশীল (ডাটাবেইজ,টেবল)) "
"এবং শুধু SQL কার্যকর।"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "আমদানিকৃত ফাইলের গঠন"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "LOCAL কীওর্য়াড ব্যবহার কর"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "প্রথম সারিতে স্তম্ভের নাম"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "খালি সারি আমদানি করো না"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "মুদ্রা আমদানি ($৫.০০ কে ৫.০০)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "সঠিক দশমিকে শতকরা আমদানি (১২.০০% কে .১২)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "আরম্ভ থেকে এড়িয়ে যাওয়ার অনুসন্ধানের সংখ্যা।"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "আংশিক আমদানি: অনুসন্ধান উপেক্ষা কর"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "শুন্য মানের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT) ব্যবহার করবে না"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "স্লাইডারের প্রাথমিক অবস্থা"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "এক সংগে কতগুলো রো ইনসার্ট করবে।"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "ইনর্সাটকৃত রো'র সংখ্যা"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr "সংখ্যা নয় এমন স্তম্ভে প্রদর্শনের জন্য সবোর্চ্চ অক্ষরের সংখ্যা।"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "স্তম্ভের অক্ষর সীমা"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6705,11 +6728,11 @@ msgstr ""
"অনেকগুলো সার্ভারে সংযুক্ত থাকে তখন অন্যান্য সার্ভার থেকে লগাউট হতে ভুলে যাওয়া সহজ "
"হতে পারে।"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "লগ আউটের সময় সব কুকি মুছে ফেলবে"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6720,11 +6743,11 @@ msgid ""
msgstr ""
"নির্ধারন করুন পূর্বের লগইন পুনরায় ব্যবহার করা হবে অথবা কুকিহীন প্রমাণীকরণ পদ্ধতি।"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "ব্যবহারকারীর নাম পুনরায় ব্যবহার"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6735,48 +6758,48 @@ msgstr ""
"স্বাভাবিকভাবে ০ যার মানে হলো এটা শুধুমাত্র বর্তমান সেশসনের জন্য, এবং ব্রাউজার বন্ধ "
"করা হলে এটা মুছে ফেলা হবে। অবিশ্বস্ত পরিবেশের জন্য এটা উপযোগী।"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "লগইন কুকি মজুদ"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "একটি লগইন কুকি কতক্ষন (সেকেন্ডে) কার্যকর থাকবে তা নির্ধারণ করুন।"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "লগইন কুকির বৈধতা"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "LONGTEXT স্তম্ভের জন্য টেক্সটএরিয়া দ্বিগুন কর।"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEXT এর জন্য বড় টেক্সটএড়িয়া"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "SQL অনুসন্ধান দেখানোর জন্য সর্বোচ্চ সংখ্যক বর্ণের সংখ্যা।"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "দেখানোর জন্য SQL এর সর্বোচ্চ দৈর্ঘ"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "ব্যবহারকারী উচ্চতর মান নির্ধারন করতে পারবে না"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "টেবল তালিকায় প্রদর্শনের জন্য টেবলের সর্বোচ্চ সংখ্যা।"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "সর্বোচ্চ সংখ্যক ডাটাবেইজ"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid ""
#| "The number of items that can be displayed on each page of the navigation "
@@ -6786,23 +6809,23 @@ msgid ""
"the navigation tree."
msgstr "চলাচলের ট্রির প্রতি পাতায় কতগুলো জিনিস দেখাবে।"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum items in branch"
msgid "Maximum items on first level"
msgstr "শাখায় জিনিসের সর্বোচ্চ সংখ্যা"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr "চলাচলের ট্রির প্রতি পাতায় কতগুলো জিনিস দেখাবে।"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "শাখায় জিনিসের সর্বোচ্চ সংখ্যা"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6810,19 +6833,19 @@ msgstr ""
"ব্রাউজিংয়ের সময় প্রর্দশিত ফলাফলে রো'র সংখ্যা। এতে যদি অনেক বেশী রো থাকে "
"\"পূর্ববর্তী \" এবং \"পরবর্তী\" দেখাবে।"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "প্রদর্শনের জন্য রো'র সবোর্চ্চ সংখ্যা"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "টেবল তালিকায় প্রদর্শনের জন্য টেবলের সর্বোচ্চ সংখ্যা।"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "টেবলের সর্বোচ্চ সংখ্যা"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6830,41 +6853,41 @@ msgstr ""
"একটি স্ক্রীপটের জন্য নির্ধারিত বাইটের সংখ্যা যেমন [kbd]৩২মে[/kbd] ([kbd]০[/"
"kbd]কোন সীমা নির্দষ্ট না করার জন্য।"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "মেমরীর সীমা"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show databases navigation as tree"
msgstr "চলাচল ফ্রেইমে লোগো দেখাও"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "চলাচল ফ্রেইমে লোগো দেখাও।"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "লোগো দেখাও"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "চলাচলের ফ্রেইমে যেখানে লোগোটি থাকবে তার URL।"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "লোগো সংযোগের URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6872,43 +6895,43 @@ msgstr ""
"সংযুক্ত পাতাটি একটি নতুন উইন্ডোতে ([kbd]new[/kbd]) খোল বা প্রধান উইন্ডোটিতে "
"([kbd]main[/kbd]) খোল।"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "লোগো সংযোগের লক্ষ্য"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "পছন্দের সার্ভারটি উপরের বামদিকের কোণার ফ্রেইমে দেখাও।"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "সার্ভার নির্বাচন দেখাও"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "দ্রুত প্রবেশের আইকনের লক্ষ্য"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "দ্রুত প্রবেশের আইকনের লক্ষ্য"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr "টেবল ফিল্টার বক্সে প্রদর্শনের জন্য নুন্যতম সংখ্যা"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "ফিল্টার বক্সে প্রদর্শনের জন্য বিষয়ের নুন্যতম সংখ্যা"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "ডাটাবেইজ ফিল্টার বক্সে প্রদর্শনের জন্য নুন্যতম ডাটাবেইজ সংখ্যা"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6918,105 +6941,161 @@ msgid ""
"the Databases and Tables tabs above)."
msgstr "চলাচলের ট্রিতে বিষযগুলো দলবদ্ধ কর।"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "ট্রিতে বিষযগুলো দলবদ্ধ কর"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "বিভিন্ন পর্যায়ে ডাটাবেইজ ট্রি পৃথককারী ট্রিং।"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "ডাটাবেইজ ট্রি পৃথককারী"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "বর্ণ যার দ্বারা টেবলগুলো ট্রি'র বিভিন্ন ক্ষেত্রে পৃথক হবে।"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "টেবল ট্রি পৃথককারী"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "টেবল ট্রির সর্বোচ্চ গভীরতা"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "মাউস কার্সরের নীচে সার্ভার চিহ্নিত কর।"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "চিহ্নিতকরন কাযর্কর"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "টেবল চলাচলের বার"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Showing tables:"
+msgid "Show tables in tree"
+msgstr "টেবলসমূহ দেখাচ্ছে:"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in navigation panel"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "চলাচল ফ্রেইমে লোগো দেখাও"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "সংস্করন দেখাও"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in navigation panel"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "চলাচল ফ্রেইমে লোগো দেখাও"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "ফাংশন ক্ষেত্র দেখাও"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "প্রসেসসমূহ দেখান"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "সংস্করন দেখাও"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in navigation panel"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "চলাচল ফ্রেইমে লোগো দেখাও"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "সম্প্রতি ব্যবহৃত টেবলের সর্বো্চ্চ সংখ্যা; অকার্যকর করার জন্য ০ নির্ধারন করুন।"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable."
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "সম্প্রতি ব্যবহৃত টেবলের সর্বো্চ্চ সংখ্যা; অকার্যকর করার জন্য ০ নির্ধারন করুন।"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "সম্প্রতি ব্যবহৃত টেবল"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "এগুলো সম্পাদনা, প্রতিলিপি এবং মুছা সংযোগ।"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "টেবলের রো সংযোগ কোথায় দেখাবে"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "টেবল এবং ডাটাবেইজের নাম সাজানোর জন্য স্বাভাবিক বিন্যাস ব্যবহার কর।"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "স্বাভাবিক বিন্যাস"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "শুধু আইকন, শুধু মাত্র টেক্সট বা উভয়ই ব্যবহার কর।"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "টেবল চলাচলের বার"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "HTTP স্থানান্তরের গতি বাড়ানোর জন্য জিজিপ আউটপুট বাফারিং ব্যবহার কর।"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "জিজিপ আউটপুট বাফারিং"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -7024,19 +7103,19 @@ msgstr ""
"[kbd]দক্ষ[/kbd]- যেমন স্তম্ভ যদি সময়,দিন, দিনসময়্ এবং সময়কাল হয় তবে অধমূখী অন্যথায় "
"উর্দ্ধ মুখী।"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "গুছানোর স্বাভাবিক বিন্যাস"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL ডাটাবেইজে স্থীর সংযোগ ব্যবহার কর।"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "স্থীর সংযোগ"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -7045,11 +7124,11 @@ msgstr ""
"phpMyAdmin কনফিগারেশনের কোন একটি storage table পাওয়া না গেলে ডাটাবেইজের বিশদ "
"গঠন যেখানে দেখানো হয় সেখানে প্রদর্শিত সর্তকতা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -7057,11 +7136,11 @@ msgstr ""
"MySQL library এবং সার্ভরের পার্থক্য পাওয়া গেলে যে স্বাভাবিক সর্তক বার্তা প্রদর্শিত "
"হয় তা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "সার্ভার/লাইব্রেরীর পার্থক্যের জন্য সতর্ক বার্তা"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -7069,27 +7148,27 @@ msgstr ""
"যদি কোন টেবলের স্তম্ভের নামে MySQL এর রির্জাভড ওর্য়াড ব্যবহার করা হয় তবে গঠন "
"পাতায় যে সর্তকবার্তা প্রদর্শন করা হয় তা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "MySQL এর রির্জাভড ওর্য়াড সর্তকতা"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "ম্যানু ট্যাব কিভাবে প্রদর্শন করবে"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "বিভিন্ন ধরনের কাজের সংযোগ কিভাবে প্রদর্শন করবে"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB এবং BINARY টেবল সম্পাদনা অ-অনুমোদিত।"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "বাইনারী স্তম্ভ সংরক্ষন কর"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7099,128 +7178,128 @@ msgstr ""
"storage)লাগবে, অন্যথায় অনুসন্ধান হিস্টোরী দেখানোর জন্য JS-routines ব্যবহৃত হবে। "
"( উইন্ডো বন্ধ করলে যা নষ্ট হয়ে যাবে)"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "অনুসন্ধানের স্থায়ী হিস্টোরী"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "হিস্টোরীতে কতগুলো অনুসন্ধান থাকবে।"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "অনুসন্ধান হিস্টোরীর দৈর্ঘ্য"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "বর্ণরাশি পরিবর্তনে কোন ফাংশন ব্যবহৃত হবে তা নির্বাচন করুন।"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "রের্কডিং ইঞ্জিন"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "যখন টেবল ব্রাউজ করা হবে, টেবলের সজ্জা মনে রাখবে।"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "টেবলের সজ্জা মনে রাখবে"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "গুছানোর স্বাভাবিক বিন্যাস"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "প্রতি X cells শিরোনাম পুনরায় দেখাবে, [kbd]০[/kbd] এটি অকার্যকর করবে।"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "শিরোনাম পুনরাবৃত্তি"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "গ্রীড সম্পাদনা: trigger action"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "সর্ম্পক দেখানোর স্থম্ভ"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "সার্ভারের প্রর্দশন অপশনগুলো।"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "গ্রীড সম্পাদনা: সম্পাদনকৃত সব সেল একত্রে সংরক্ষন কর"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "সার্ভারে রফতানী সংরক্ষনের ডিরেক্টরী।"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "সংরক্ষনের ডিরেক্টরী"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "ব্যবহৃত না হলে থালি রাখ।"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "হোস্ট অনুমোদনের বিন্যাস"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "স্বাভাবিকভাবে থাকার জন্য খালি রাখুন।"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "হোস্ট অনুমোদনের নিয়ম"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "পাসওয়ার্ডবিহীন লগইনের অনুমোদন"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "রুট লগইনের অনুমোদন"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "সেশনের মান"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"যথন এইছটিটিপি প্রমানীকরণ ব্যবহার হবে তখন প্রদর্শনের জন্য প্রাথমিক এইছটিটিপি "
"প্রমানীকরণ নাম।"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP রাজ্য"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7229,19 +7308,19 @@ msgstr ""
"কনফিগ ফাইলের পথ [a@http://swekey.com]SweKey hardware authentication[/a] "
"(ডকুমেন্ট রুটে পাওয়া যায়নি; সাম্ভাব্য: /etc/swekey.conf)।"
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey কনফিগ ফাইল"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "ব্যবহারের জন্য প্রমাণীকরনের পদ্ধতী।"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "প্রমাণীকরণের ধরন"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7249,11 +7328,11 @@ msgstr ""
"না করার জন্য খালি রাখুন [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
"a] সাহায্যের জন্য, দেখুন:[kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "বুকর্মাক টেবল"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7261,31 +7340,31 @@ msgstr ""
"স্তম্ভের মন্তব্য/মাইমের ধরন না দেখানোর জন্য খালি রাখুন, দেখুন:[kbd]pma_column_info[/"
"kbd]।"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "স্তম্ভ্ তথ্যের টেবল"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "সংকুচিত MySQL সার্ভারের সংযোগ।"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "সংকুচিত সংযোগ"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "সার্ভারে কিভাবে সংযোগ করবে, যদি না জানেন [kbd]tcp[/kbd] রাখেন।"
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "সংযোগের ধরন"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "নিয়ন্ত্রক ব্যবহারকারীর পাসওর্য়াড"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7293,11 +7372,11 @@ msgstr ""
"একটি বিশেষ MySQL ব্যবহারকারী সীমিত অধিকার সহ কনফিগার করা হয়েছে, আরো তথ্যের জন্য "
"দেখুন [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]।"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "নিয়ন্ত্রক ব্যবহারকারী"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7305,11 +7384,11 @@ msgstr ""
"কনফিগারেশন মজুদ (configuration storage) করার জন্য অন্য একটি হোস্ট; না থাকলে খালি "
"রাখুন।"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "হোস্ট নিয়ন্ত্রন"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7318,15 +7397,15 @@ msgstr ""
"কনফিগারেশন মজুদ (configuration storage) করার জন্য অন্য একটি হোস্ট; না থাকলে খালি "
"রাখুন।"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "নিয়ন্ত্রন পোর্ট"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "ডাটাবেইজের regular expression (PCRE) মিলকরন লুকাও।"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7334,15 +7413,15 @@ msgstr ""
"আরো তথ্যের জন্য [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:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA ব্যবহার অকার্যকর"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "ডাটাবেইজ লুকাও"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7350,23 +7429,23 @@ msgstr ""
"SQL অনুসন্ধানের হিস্টোরী সুবিধা দিতে না চাইলে খালি রাখুন, দেখুন: [kbd]pma_history[/"
"kbd]।"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL অনুসন্ধানের হিস্টোরী টেবল"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "MySQL সার্ভারের হোস্ট নাম।"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "সার্ভরের হোস্ট নাম"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "লগআউট URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7374,17 +7453,17 @@ msgstr ""
"ডাটাবেইজে রক্ষিত টেবলের তথ্যের সংখ্যা সীমিত করন, পুরাতন তথ্য স্বয়ংক্রীয়ভাবে মুছে "
"যাবে।"
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "মজুদ করার জন্য সর্বো্চ্চ সংখ্যক টেবলের তথ্যের সংখ্য"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "সহায়ক এর অবস্থা দেখুন"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7395,13 +7474,13 @@ msgid ""
msgstr ""
"পিডিএফ গঠনের সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন:[kbd]pma_pdf_pages[/kbd]।"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "টেক্সএরিয়া স্তম্ভ"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7411,15 +7490,15 @@ msgid ""
"[kbd]pma__central_columns[/kbd]."
msgstr "পিডিএফ গঠন সমর্থনের জন্য খালি রাখুন, দেখুন: [kbd]pma_table_coords[/kbd]।"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "পাসওর্য়াডহীন সংযোগের চেষ্টা কর।"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "পাসওর্য়াডহীন সংযোগ কর"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7431,29 +7510,29 @@ msgstr ""
"শুধু ওগুলোর নাম দেন এবং শেষে[kbd]*[/kbd] ব্যবহার করুন alphabetical ভাবে সাজানোর "
"জন্য।"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "শুধু তালিকার ডাটাবেইজ দেখাও"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "খালি রাখুন যদি কনফিগ প্রমাণীকরণ ব্যবহার না করেন।"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "কনফিগ প্রমাণীকরণের পাসওর্য়াড"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"পিডিএফ গঠনের সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন:[kbd]pma_pdf_pages[/kbd]।"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "পিডিএফের গঠন: টেবলের পাতা"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7463,20 +7542,20 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] দেখুন। সমর্থন না করলে খালি রাখুন। দেখুন: "
"[kbd]phpmyadmin[/kbd]।"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "ডাটাবেইজের নাম"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "যে পোর্টে MySQL সার্ভার শুনছে, স্বাভাবিকটির জন্য খালি রাখুন।"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "সার্ভারের পোর্ট"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7484,11 +7563,11 @@ msgstr ""
"যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি "
"রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "সাময়িককালে ব্যবহৃত টেবল"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7500,13 +7579,13 @@ msgstr ""
"যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি "
"রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "চলকসমূহ"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7514,11 +7593,11 @@ msgstr ""
"না করার জন্য খালি রাখুন [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a]সাহায্যের জন্য, দেখুন:[kbd]pma__relation[/kbd]।"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "আন্তসর্ম্পক টেবল"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7526,43 +7605,43 @@ msgstr ""
"উদাহরণের জন্য [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types [/a] দেখুন।"
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "সাইনঅন সেশনের নাম"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "সাইনঅন URL"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "কোন সকেটে MySQL সার্ভার শুনছে, স্বাভাবিকটির জন্য।"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "সার্ভারের সকেট"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL সার্ভারে সংযোগের জন্য SSL কার্যকর কর।"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "SSL ব্যবহার কর"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr "পিডিএফ গঠন সমর্থনের জন্য খালি রাখুন, দেখুন: [kbd]pma_table_coords[/kbd]।"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "পিডিএফের গঠন: table coordinates"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7570,11 +7649,11 @@ msgstr ""
"স্তম্ভ বর্ণনার টেবল, সমর্থন দিতে না চাইলে খালি রাখুন; দেখুন: [kbd]pma_table_info[/"
"kbd]।"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "স্তম্ভের টেবল দেখাও"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7582,11 +7661,11 @@ msgstr ""
"যদি টেবলের পছন্দগুলো বি্ভিন্ন সেশনে \"persistent\" স্থায়ীভাবে রাখতে না চান খালি "
"রাখুন, দেখুন: [kbd]pma_table_uiprefs[/kbd]।"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "UI পছন্দ রাখর টেবল"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7594,11 +7673,11 @@ msgstr ""
"যখন একটি ডাটাবেইজ তৈরী হবে তখন একটি DROP DATABASE IF EXISTS লেখা লগের প্রথম "
"লাইনে যুক্ত হবে।"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE যোগ কর"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7606,11 +7685,11 @@ msgstr ""
"যখন লগ একটি টেবল তৈরী হবে তখন একটি DROP TABLE IF EXISTS লেখা লগের প্রথম লাইনে "
"যুক্ত হবে।"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "DROP TABLE যোগ কর"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7618,21 +7697,21 @@ msgstr ""
"যখন একটি ভিউ তৈরী হবে তখন একটি DROP VIEW IF EXISTS লেখা লগের প্রথম লাইনে যুক্ত "
"হবে।"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "DROP VIEW যোগ কর"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"একটি statements এর তালিকা তৈরী করুন যা সংস্করন তৈরীর জন্য স্বয়ংক্রীয় ভাবে ব্যবহৃত "
"হবে।"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "ট্রেকের জন্য Statements"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7640,21 +7719,21 @@ msgstr ""
"SQL অনুসন্ধান ট্রেকিং সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন: [kbd]pma_tracking[/"
"kbd]।"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL অনুসন্ধান ট্রেকিং টেবল"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "ট্রেকিং ব্যবস্থা টেবল এবং ভিউ এর সংস্করন স্বয়ংক্রীয় ভাবে তৈরী করবে।"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "স্বয়ংক্রীয়ভাবে সংস্করন তৈরী কর"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7662,33 +7741,33 @@ msgstr ""
"ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, "
"দেখুন:[kbd]pma_userconfig[/kbd]।"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "ব্যবহারকারীর নির্ধারন (preferences) মজুদ করার টেবল"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "টেবল ব্যবহার"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "ব্যাবহারকারীর দলের টেবল"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7696,15 +7775,15 @@ msgstr ""
"ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, "
"দেখুন:[kbd]pma_userconfig[/kbd]।"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "কনফিগ প্রমাণীকরণের জন্য ব্যবহারকারী"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7712,21 +7791,21 @@ msgstr ""
"ব্যবহারকারীর জন্য সার্ভারের সহজবোধ্য বিবরণ। হোস্ট নামটি দেখাবার জন্য খালি রাখতে "
"পারেন।"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "সার্ভারের কথ্য নাম"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "ব্যবহারকারীকে \"সব দেখাও রো)\" বাটন দেখাবে"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "সবগুলো রো প্রর্দশন করার অনুমতি"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7736,80 +7815,80 @@ msgstr ""
"কারন পাসওয়ার্ডটি কনফিগারেশন ফাইলে লেখা আছে; এটা একই কমান্ড সরাসরি কার্যকর করার "
"ক্ষমতা খর্ব করে না।"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "পাসওর্য়াড পরিবর্তনের ফর্ম দেখাও"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "ডাটাবেইজ তৈরীর ফর্ম দেখাও"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
msgid "Show or hide a column displaying the comments for all tables."
msgstr "সব টেবলের প্রস্তুত সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "টেবলের মন্তব্য"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "সব টেবলের প্রস্তুত সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "প্রস্তুতের সময় দেখাও"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "সব টেবলের আপডেট সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "সর্বশেষ আপডেটের সময় দেখাও"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "সব টেবলের সর্বশেষ পরীক্ষার সময় প্রর্দশনের স্তম্ভ দেখাবে বা লুকাবে।"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "সর্বশেষ পরীক্ষার সময় দেখাও"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr "সম্পাদনা/ইনর্সাটের সময় টাইপ ফিল্ড দেখাবে কিনা তা নির্ধারন করুন।"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "ক্ষেত্রের ধরন দেখাও"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "ফাংশন ক্ষেত্রটি সম্পাদনা/ইনর্সাট অবস্থায় দেখাবে।"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "ফাংশন ক্ষেত্র দেখাও"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "আভাস দেখাবে অথবা না।"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "আভাস দেখাও"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7817,50 +7896,50 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] আউটপুট সংযোগ "
"দেখাও।"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "phpinfo() সংযোগ দেখাও"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "MySQL সার্ভরের বিশদ তথ্য দেখাও"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "নিধার্রণ করুন phpMyAdmin দ্বারা প্রস্তুতকৃত SQL অনুসন্ধান প্রদর্শন করবে কিনা।"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "SQL অনুসন্ধান দেখাও"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "পেশ করার পর অনুসন্ধান বক্সটি পর্দায় থাকবে কিনা।"
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "অনুসন্ধান বক্সটি রাখ"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "ডাটাবেইজ এবং টেবলের পরিসংখ্যান দেখাও (জায়গা ব্যবহৃত হবে)।"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "পরিসংখ্যান দেখাও"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr "ব্যবহৃত টেবল চিহ্নিত কর এবং লক্ড টেবল সহ ডাটাবেইজগুলো দেখাবার ব্যবস্থা কর।"
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "লকড টেবল এড়িয়ে যাও"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7868,11 +7947,11 @@ msgid ""
"detected."
msgstr "যদি Suhosin পাওয়া যায় তবে একটি সর্তক বার্তা প্রদর্শন করবে।"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin সতর্কবার্তা"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7885,13 +7964,13 @@ msgstr ""
"যদি কোন টেবলের স্তম্ভের নামে MySQL এর রির্জাভড ওর্য়াড ব্যবহার করা হয় তবে গঠন "
"পাতায় যে সর্তকবার্তা প্রদর্শন করা হয় তা অকার্যকর কর।"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "লগইন কুকির বৈধতা"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7903,11 +7982,11 @@ msgstr ""
"সম্পাদনার সময়, টেক্সটএরিয়া (স্তম্ভ) আকৃতি এই মানটি SQL অনুসন্ধানের টেক্সটএরিয়া (*২) "
"এবং অনুসন্ধান উইন্ডো (*১.২৫) প্রভাব ফেলবে।"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "টেক্সএরিয়া স্তম্ভ"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7919,31 +7998,31 @@ msgstr ""
"সম্পাদনের সময়, টেক্সটএরিয়ার আকৃতি (রো) এই মানটি SQL অনুসন্ধানের টেক্সটএরিয়া (*২) "
"এবং অনুসন্ধান উইন্ডো (*১.২৫) প্রভাব ফেলবে।"
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "টেক্সটএরিয়ার রোসমূহ"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "একটি ডাটাবেইজ নিবার্চন করা হলে ব্রাউজার উইন্ডোর শিরোনাম।"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "কিছু নির্বাচিত না থাকলে ব্রাউজার উইন্ডোর শিরোনাম।"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "স্বাভাবিক শিরোনাম"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "একটি সার্ভার নিবার্চন করা হলে ব্রাউজারের শিরোনাম।"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "একটি টেবল নির্বাচন করা হবে ব্রাউজার উইন্ডোর শিরোনাম।"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7954,27 +8033,27 @@ msgstr ""
"1.2.3.4:[br][kbd]1.2.3.4:HTTP_X_FORWARDED_FOR[/kbd] থেকে আসা শিরোনামে "
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) বিশ্বাস করবে।"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "বিশ্বস্ত প্রক্সির তালিকা IP allow/deny এর জন্য"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "সার্ভরের আপলোড ডিরেক্টরি যেখানে আমদানির ফাইল রাখা যাবে।"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "আপলোড ডিরেক্টরি"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "সমস্ত ডাটাবেইজের ভিতর খোঁজার অনুমতি।"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "ডাটাবেইজে খুঁজার ব্যবহার কর"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7982,26 +8061,26 @@ msgstr ""
"যদি অকার্যকর থাবে, ব্যবহারকারী নীচের কোন অপশন সেট করতে পারেব না, ডান দিকের "
"চেকবক্স পর্যন্ত।"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "সেটিংসে উন্নয়নকারী টেবটি কার্যকর করুন"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "সর্বশেষ সংস্করনের জন্য খুঁজে দেখ"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "নতুন কোন সংস্করন আছে কিনা তা phpMyAdmin page এ পরীক্ষা করে দেখবে।"
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "সংস্করন পরীক্ষা"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8009,30 +8088,30 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "ব্যাবহারকারীর নাম"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "পাসওর্য়াড"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -8040,52 +8119,52 @@ msgstr ""
"জিপ [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] সংকোচন আমদানি "
"রফতানীর জন্য কার্যকর কর।"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "জিপ"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL query"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8113,44 +8192,44 @@ msgstr "HTTP প্রমাণীকরণ"
msgid "Signon authentication"
msgstr "সাইনঅন প্রমাণীকরণ"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV LOAD DATA ব্যবহার করছে"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "ওপেন অফিসের স্প্রেডসীট"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "দ্রুত"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "পরিবর্তন"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "ডাটাবেইজ রফতানী অপশন"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "মাইক্রোসফট এক্সেলের জন্য CSV"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "মাইক্রোসফট ওর্য়াড ২০০০"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "ওপেন অফিস টেক্সট"
@@ -8179,7 +8258,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8249,7 +8328,7 @@ msgstr "টেবিল তৈরী কর"
msgid "Number of columns"
msgstr "স্তম্ভের সংখ্যা"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "রফতানী সহায়কটি লোড করা যাচ্ছে না, ইনস্টলেশন পরীক্ষা করুন!"
@@ -8292,62 +8371,62 @@ msgstr "টেবল:"
msgid "Format:"
msgstr "গঠন:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "গঠন নির্দিষ্ট অপশনসমূহ:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr "এই গঠনের অপশনগুলো পূর্ণ করার জন্য নীচে যান এবং অন্য গঠনের অপশনগুলো বাদ দিন।"
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "এনকোডিং কনভারশন:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "সারি:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "কিছু রো স্তুপ কর"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "শুরুর রো:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "সব রো স্তুপ কর"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "আউটপুট:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "সার্ভারের %s ডিরেক্টরিতে রাখ"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "ফাইলের নামের নকশা:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "সার্ভারের নাম হবে @SERVER@"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ হবে ডাটাবেইজের নাম"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr "@TABLE@ হবে টেবলের নাম"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8358,74 +8437,86 @@ msgstr ""
"পারেন। এখন এই রুপান্তরটি হবে:%3$s। অন্যান্য লেখা ঠিকই থাকবে। %4$sFAQ%5$s এ বিশদ "
"পাওয়া যাবে।"
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "ভবিষৎ রফতানীতে ইহা ব্যবহার করবে"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "ফাইলের বর্ণ রাশি:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "সংকোচন:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "জিপ্ড"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "জিজিপ্ড"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "লেখার মত আউটপুট দেখা"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "ভিউ টেবিলের মত রফতানী করা হচ্ছে"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "সমান্তরাল (rotated headers)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "আউটপুট একটি ফাইলে রাখ"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "টেবল নির্বাচন"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "টেবল নির্বাচন"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "ডাটাবেইজের নাম"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New page name: "
msgid "New table name"
msgstr "নতুন পাতার নাম: "
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "স্তম্ভের নাম প্রতিলিপি"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9036,7 +9127,7 @@ msgid "Create an index on %s columns"
msgstr " %s কলামসমূহে একটি ইনডেক্স তৈরী কর"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "লুকাও"
@@ -9174,11 +9265,6 @@ msgstr "হইতে"
msgid "To"
msgstr "প্রতি"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "জমা"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "টেবিলের পুর্বপদ দিন:"
@@ -9395,22 +9481,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "চলাচলের ট্রি লোডকরার সময় একটি ভুল হয়েছে"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "দলের নাম:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "ইভেন্টসমূহ:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "ফাংশনসমূহ:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "প্রোসিডিউরস:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "টেবলসমুহ:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "ভিউসমূহ:"
@@ -9436,13 +9528,13 @@ msgstr "চলাচলের ফ্রেম"
msgid "Reload navigation panel"
msgstr "চলাচল প্যানেল রিলোড"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, fuzzy, php-format
#| msgid "%s other result found"
#| msgid_plural "%s other results found"
@@ -9451,20 +9543,20 @@ msgid_plural "%s results found"
msgstr[0] "%s টি অন্যান্য ফলাফল পাওয়াগেছে"
msgstr[1] "%s গুলো অন্যান্য ফলাফল পাওয়াগেছে"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "নাম বা regex অনুযায়ী ডাটাবেইজ ফিল্টার"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "দ্রুত ফিল্টারটি সরাও"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "নাম বা regex অনুযায়ী ফিল্টার"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9498,7 +9590,7 @@ msgstr "নতুন"
msgid "Database operations"
msgstr "ডাটাবেইজ কার্যক্রম"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "গোপন জিনিস দেখাও"
@@ -10706,13 +10798,13 @@ msgstr "স্তম্ভের নাম: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV আমদানীর প্যারামিটার ঠিক নাই:%s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10721,13 +10813,13 @@ msgstr ""
"অযোগ্য স্তম্ভের নাম (%s) দেয়া হয়েছে! স্তম্ভের নামটি সঠিক ভাবে বানান করা হয়েছে "
"কিনা, কমা দ্বারা আলাদ করা এবং কোঔট দ্বারা সীমিত নয় তা নিশ্চিন্ত করুন।"
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV ফাইলের গঠন অযোগ্য %d লাইনে।"
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "অযোগ্য স্তম্ভ্ সংখ্যা CSV ফাইলের %d লাইনে।"
@@ -11135,61 +11227,61 @@ msgstr "বাক্য চিহ্নিত করনসহ SQL অনুস
msgid "Formats text as XML with syntax highlighting."
msgstr "বাক্য চিহ্নিত করনসহ SQL অনুসন্ধান গঠন কর।"
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "ভুল: সর্ম্পক পূর্ব থেকেই তৈরী আছে।"
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY সর্ম্পক যোগ করা হয়েছে"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "ভুল: সর্ম্পক যোগ করা হয়নি"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "ভুল: সর্ম্পক তৈরী অকার্যকর করা আছে!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "আভ্যন্তরীন সম্পর্ক যোগ করা হয়েছে"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "ভুল: সর্ম্পক যোগ করা হয়নি"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "FOREIGN KEY সর্ম্পক যোগ করা হয়েছে"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "ভুল: সর্ম্পক যোগ করা হয়নি"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "ভুল: সর্ম্পক যোগ করা হয়নি"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11285,11 +11377,17 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "টেবলের সজ্জা মনে রাখবে"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "উন্নততর বিষয়গুলো দ্রুত সেটআপের পদক্ষেপসমূহ:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
#| msgid ""
#| "Create the needed tables with the examples/create_tables.sql."
@@ -11298,11 +11396,11 @@ msgstr ""
"প্রয়োজনীয় টেবলসমূহ examples/create_tables.sql এর সাহায্যে তৈরী কর "
"।"
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "একটি PMA ব্যবহারকারী তৈরী কর এবং টেবিলসমূহে প্রবেশাধীকার দাও।"
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11310,22 +11408,22 @@ msgstr ""
"কনফিগারেশন ফাইলে (config.inc.php) উন্নততর বিষয়গুলো কার্যকর কর, "
"উদাহরণ স্বরুপ config.sample.inc.php থেকে শুরু কর।"
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr "আধুনিক কনফিগারেশন ফাইল লোড করার জন্য phpMyAdmin এ আবার লগইন করুন।"
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "বণর্না নাই"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11333,14 +11431,14 @@ msgid ""
"configuration storage there."
msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12098,7 +12196,7 @@ msgstr "প্রদর্শনের জন্য কোন ইভেন্ট
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "বর্তমান সার্ভার:"
@@ -16823,9 +16921,6 @@ msgstr "concurrent_insert এর জন্য ০ নির্ধারন ক
#~ msgid "Delete tracking data for this table"
#~ msgstr "টেবিল থেকে ট্র্যাকিং এর তথ্য মুছে ফেল"
-#~ msgid "Show versions"
-#~ msgstr "সংস্করন দেখাও"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -17660,9 +17755,6 @@ msgstr "concurrent_insert এর জন্য ০ নির্ধারন ক
#~ msgid "Reset"
#~ msgstr "Reset"
-#~ msgid "Show processes"
-#~ msgstr "প্রসেসসমূহ দেখান"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "রিসেট করুন"
diff --git a/po/br.po b/po/br.po
index 97c619c900..c4297bbdf1 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-28 11:07+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Diskouez pep tra"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Linestring"
msgid "Original length"
msgstr "Aradennad linennoù"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Nullañ"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "Talvoudoù enporzhiañ dre ziouer"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select All"
msgid "Select database first"
msgstr "Diuzañ pep tra"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Set value: %s"
msgid "Go to link:"
msgstr "Lakaat an talvoud da %s"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "No rows selected"
msgid "Copy column name."
msgstr "N'eus bet diuzet linenn ebet"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Genel ur ger-tremen"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Genel"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Cheñch ger-tremen"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Muioc'h"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Diskouez pep tra"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Hide indexes"
msgid "Hide Panel"
msgstr "Kuzhat menegerioù"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show hidden navigation tree items."
msgstr "Diskouez al logo er banell verdeiñ gleiz"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main frame"
msgid "Link with main panel"
msgstr "Personelaat ar framm pennañ"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main frame"
msgid "Unlink from main panel"
msgstr "Personelaat ar framm pennañ"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Taolennoù"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Gwelet"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Processes"
msgid "procedures"
msgstr "Argerzhioù"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Reset"
msgid "events"
msgstr "Adderaouekaat"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Connections"
msgid "functions"
msgstr "Kevreadennoù"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2625,132 +2668,132 @@ msgstr ""
"hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", stumm stabil diwezhañ :"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "hizivaet"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "Kemmañ an arventennoù"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Na ober van"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Issued queries"
msgid "Execute this query again?"
msgstr "Rekedoù resevet"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Ha sur oc'h e fell deoc'h "
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Evezhiadennoù diwar-benn an daolenn"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Kuzhat disoc'hoù an enklask"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Kent"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2758,149 +2801,149 @@ msgid "Next"
msgstr "War-lerc'h"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Hiziv"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Genver"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "C'hwevrer"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Meurzh"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Ebrel"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mae"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Mezheven"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Gouere"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Eost"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Gwengolo"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Here"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Du"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Kerzu"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "C'hwe"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Meu"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mae"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Mezh"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Goue"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Eost"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Gwen"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Here"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Du"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Kzu"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Sul"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Meurzh"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Merc'her"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Yaou"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Gwener"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sadorn"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2908,205 +2951,205 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Meu"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Yaou"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "L"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Mz"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Mc"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Y"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "G"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Sizh."
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Hini"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Eur"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Munut"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Eilenn"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Text fields"
msgid "Please fix this field"
msgstr "Maeziennoù testenn"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "Niverenn borzh direizh"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3178,16 +3221,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Ment an destenn"
@@ -3208,7 +3251,7 @@ msgid "Requery"
msgstr "Reked SQL"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3430,7 +3473,7 @@ msgid "Count:"
msgstr "Bann"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3641,25 +3684,25 @@ msgstr "O tiskouez ar sined"
msgid "Delete bookmark"
msgstr "Klask"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3735,6 +3778,16 @@ msgstr "Dispartiet e vez ar gerioù gant un esaouenn (\" \")."
msgid "Inside tables:"
msgstr "E diabarzh an taolennoù :"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Diuzañ pep tra"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Diziuzañ pep tra"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Er bann :"
@@ -3801,7 +3854,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -4119,7 +4172,7 @@ msgstr ""
"bezañ dilamet."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Servijer"
@@ -4130,34 +4183,13 @@ msgstr "Servijer"
msgid "View"
msgstr "Gwelet"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Framm"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4254,8 +4286,8 @@ msgstr "Bannoù evit an takadoù skrid CHAR"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Diazoù roadennoù"
@@ -4370,7 +4402,7 @@ msgid "Recent"
msgstr "Adderaouekaat"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Tracked tables"
msgid "Favorite tables"
@@ -4444,16 +4476,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Taolennoù"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4979,7 +5001,7 @@ msgstr "Ment vrasañ : %s%s"
msgid "MySQL said: "
msgstr "respontet eo bet gant MySQL : "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Displegañ SQL"
@@ -4996,7 +5018,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Hep kod PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Krouiñ kod PHP"
@@ -5115,17 +5137,6 @@ msgstr "Ober gant an talvoud-mañ"
msgid "Rows"
msgstr "Linennoù"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Roadennoù"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5302,7 +5313,7 @@ msgstr "Servijer"
msgid "Invalid authentication method set in configuration:"
msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh :"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5310,24 +5321,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5573,7 +5584,7 @@ msgid "Set value: %s"
msgstr "Lakaat an talvoud da %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Adlakaat an talvoud dre ziouer"
@@ -6060,7 +6071,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Pad seveniñ hirañ"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -6069,7 +6080,7 @@ msgstr ""
msgid "Save as file"
msgstr "Enrollañ evel restr"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Strobad arouezennoù ar restr"
@@ -6096,17 +6107,17 @@ msgstr "Gwaskadur"
msgid "Put columns names in the first row"
msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Columns enclosed by"
msgid "Columns enclosed with"
msgstr "Bannoù gronnet gant"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Columns escaped by"
msgid "Columns escaped with"
@@ -6126,16 +6137,16 @@ msgstr "Erlec'hiañ NULL gant"
msgid "Remove CRLF characters within columns"
msgstr "Tennañ an arouezennoù dibenn linenn e dibarzh ar bannoù"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "Bannoù a echu gant"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6207,7 +6218,7 @@ msgid "Save on server"
msgstr "Enrollañ war ar servijer"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Frikañ ar restroù zo c'hoazh"
@@ -6224,8 +6235,8 @@ msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Mod kenglotañ gant SQL"
@@ -6363,17 +6374,17 @@ msgid "Customize browse mode."
msgstr "Personelaat ar mod merdeiñ"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "Personelaat an dibarzhioù dre ziouer"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6407,7 +6418,7 @@ msgstr "Talvoudoù dre ziouer evit an ezporzhiañ"
msgid "Customize default export options."
msgstr "Personelaat an talvoudoù ezporzhiañ implijet dre ziouer"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Dezverkoù"
@@ -6464,48 +6475,60 @@ msgstr "Taolenn verdeiñ"
msgid "Customize appearance of the navigation panel."
msgstr "Personelaat tres an daolenn verdeiñ"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation frame"
+msgid "Navigation tree"
+msgstr "Taolenn verdeiñ"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation frame"
+msgid "Customize the navigation tree."
+msgstr "Personelaat ar framm merdeiñ"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servijerioù"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "Dibarzhioù diskwel ar servijerioù"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "Dibarzhioù diskwel an taolennoù"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "Taolenn bennañ"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Arventennoù pouezus all"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "Arventennoù a bep seurt"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Titloù pajennoù"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6519,11 +6542,11 @@ msgstr ""
"[doc@cfg_TitleTable]teuliadur[/doc] evit an neudennadoù hud a c'haller ober "
"ganto."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Surentez"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6535,25 +6558,25 @@ msgstr ""
"Notennit mat n'eo phpMyAdmin nemet un etrefas ha n'eo ket bevennet e mod "
"ebet MySQL gant an perzhioù anezhi"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Arventennoù diazez"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Dilesadur"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "Arventennoù dilesañ"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Kefluniadur ar servijer"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6565,17 +6588,17 @@ msgstr ""
"Kefluniadur pishoc'h; bezit sur e ouzit ar pezh a rit a-raok mont da gemmañ "
"tra pe dra"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "Merkañ arventennoù kevreañ ar servijer"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Mirlec'h ar c'hefluniadurioù"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
@@ -6590,11 +6613,11 @@ msgstr ""
"ouzhpenn, gwelet [doc@linked-tables]phpMyAdmin configuration storage[/doc] "
"en teuliadur"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Heuliañ ar c'hemmoù"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6602,69 +6625,69 @@ msgstr ""
"Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ "
"kefluniadurioù phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Personelaat an dibarzhioù ezporzhiañ"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Personelaat an arventennoù enporzhiañ dre ziouer"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
msgstr "Personelaat ar framm merdeiñ"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "Personelaat ar framm pennañ"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Rekedoù SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Boest rekedoù SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "Personelaat al liammoù diskwelet er boestoù rekedoù SQL"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "Arventennoù ar rekedoù SQL"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Pajenn deraouiñ"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "Personelaat ar bajenn deraouiñ"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "Diazoù roadennoù"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6672,59 +6695,59 @@ msgstr ""
msgid "Table structure"
msgstr "Diazoù roadennoù"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Ivinelloù"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "Personelaat an ivinelloù"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Maeziennoù testenn"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "Personelaat ar maeziennoù ebarzhiñ testenn"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Testenn Texy!"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Personelaat an dibarzhioù dre ziouer"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Kemennoù diwall"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Diweredekaat lod eus ar c'hemennoù diwall diskouezet gant phpMyAdmin"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6736,15 +6759,15 @@ msgstr ""
"Gweredekaat ar gwaskañ [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] evit an "
"oberiadennoù enporzhiañ hag ezporzhiañ"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Arventennoù ouzhpenn evit iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6756,11 +6779,11 @@ msgstr ""
"Ma vez gweredekaet e kendalc'h phpMyAdmin da blediñ gant ar rekedoù "
"liesfrazennek ha pa vefe ur fazi gant unan anezho."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Na ober van ouzh ar fazioù er rekedoù liesfrazennek"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6770,25 +6793,25 @@ msgstr ""
"Gallout a ra sikour da enporzhiañ restroù bras, ha pa c'hallfe terriñ "
"treuzgreadoù zo."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Enporzhiañ darnek : aotren paouez"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Arabat paouez gant an enporzhiañ pa vez ur fazi gant INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6800,82 +6823,82 @@ msgstr ""
"Furmad dre ziouer; bezit emskiantek ez eo ar roll-mañ diouzh al lec'hiadur "
"(diaz roadennoù, taolenn) ha n'eus nemet SQL zo hegerz dalc'hmat"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Furmad ar restr enporzhiañ"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Ober gant ar ger-alc'hwez LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Anvioù bannoù el linenn gentañ"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Arabat enporzhiañ linennoù goullo"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Enporzhiañ moneizioù ($5.00 a zeu da vezañ 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Enporzhiañ an dregantadoù evel degelennoù (12.00% a zeu da vezañ .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "Niver a rekedoù da lezel a-gostez adalek ar penn-kentañ"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Enporzhiañ darnek : lezel ar rekedoù a gostez"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Arabat ober gant AUTO_INCREMENT evit an talvoudoù par da mann"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Talvoud dre ziouer evit an takadoù riklañ"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "An niver a linennoù a c'haller ober ganto war un dro"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Niver a linennoù da ensoc'hañ"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -6887,11 +6910,11 @@ msgstr ""
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre "
"[kbd]cookie[/kbd]"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6899,88 +6922,88 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Customize text input fields"
msgid "Maximum items on first level"
msgstr "Personelaat ar maeziennoù ebarzhiñ testenn"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
@@ -6992,954 +7015,1010 @@ msgstr ""
"Niver a eilennoù lakaet evit seveniñ ar skriptoù ([kbd]0[/kbd] a dalvez hep "
"bevenn)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show databases navigation as tree"
msgstr "Diskouez al logo er banell verdeiñ gleiz"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "Diskouez al logo er banell verdeiñ gleiz"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Diskouez al logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "Show logo in left frame"
msgid "URL where logo in the navigation panel will point to."
msgstr "Diskouez al logo er banell verdeiñ gleiz"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel."
msgstr "Diskouez dibab ar servijerioù e laez ar banell gefluniañ"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Bukadenn evit an arlun moned prim"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Bukadenn evit an arlun moned prim"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight row pointed by the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "Lakaat al linenn a vuk al logodenn daveti da usskediñ"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Istitl eus an daolenn"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show all"
+msgid "Show tables in tree"
+msgstr "Diskouez pep tra"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr ""
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Diskouez al logo er banell verdeiñ gleiz"
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr ""
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Show views in tree"
+msgstr "Diskouez menegerioù"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr ""
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Diskouez al logo er banell verdeiñ gleiz"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Connections since last refresh"
+msgid "Show functions in tree"
+msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
-msgstr ""
+#, fuzzy
+#| msgid "Processes"
+msgid "Show procedures in tree"
+msgstr "Argerzhioù"
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
#, fuzzy
+#| msgid "Show indexes"
+msgid "Show events in tree"
+msgstr "Diskouez menegerioù"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Diskouez al logo er banell verdeiñ gleiz"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Istitl eus an daolenn"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "The primary key has been dropped."
msgid "Primary key default sort order"
msgstr "Diverket eo bet an alc'hwez kentidik."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relations"
msgid "Relational display"
msgstr "Darempredoù"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Dibarzhioù diskwel ar servijerioù"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "Arventennoù dilesañ"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Dibosupl kevreañ ouzh ar servijer MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "Bannoù evit an takadoù skrid CHAR"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Tracked tables"
msgid "Favorites table"
msgstr "Taolennoù heuliet-pizh"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "%s has been disabled for this MySQL server."
msgid "Enable SSL for connection to MySQL server."
msgstr "Diweredekaet eo bet %s war ar servijer MySQL-mañ."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Implijout taolennoù"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Evezhiadennoù diwar-benn an daolenn"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show indexes"
msgid "Show hint"
msgstr "Diskouez menegerioù"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Kuzhat ar voest rekedoù SQL"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7951,11 +8030,11 @@ msgstr ""
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre "
"[kbd]cookie[/kbd]"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -7968,51 +8047,51 @@ msgstr ""
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre "
"[kbd]cookie[/kbd]"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8020,52 +8099,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8073,34 +8152,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Anv implijer :"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password:"
msgid "Proxy password"
msgstr "Ger-tremen :"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8112,51 +8191,51 @@ msgstr ""
"Gweredekaat ar gwaskañ [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] evit an "
"oberiadennoù enporzhiañ hag ezporzhiañ"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8182,46 +8261,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "Testenn Open Document"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -8252,7 +8331,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8323,7 +8402,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8366,62 +8445,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8429,74 +8508,86 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Invalid table name"
+msgid "Export databases as separate files"
+msgstr "Anv taolenn direizh"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export method"
+msgid "Export tables as separate files"
+msgstr "Doare ezporzhiañ"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "Diuzañ pep tra"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "Diuzañ pep tra"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "The database name is empty!"
msgid "New database name"
msgstr "Goullo eo anv an diaz roadennoù !"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "Invalid table name"
msgid "New table name"
msgstr "Anv taolenn direizh"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "No rows selected"
msgid "Old column name"
msgstr "N'eus bet diuzet linenn ebet"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "No rows selected"
msgid "New column name"
@@ -9072,7 +9163,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Kuzhat"
@@ -9212,11 +9303,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Replace table prefix"
@@ -9433,28 +9519,34 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Username:"
+msgid "Groups:"
+msgstr "Anv implijer :"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr ""
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Connections"
msgid "Functions:"
msgstr "Kevreadennoù"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Processes"
msgid "Procedures:"
msgstr "Argerzhioù"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Taolennoù"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9484,39 +9576,39 @@ msgstr "Taolenn verdeiñ"
msgid "Reload navigation panel"
msgstr "Taolenn verdeiñ"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Invalid table name"
msgid "Filter databases by name or regex"
msgstr "Anv taolenn direizh"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Enrollañ evel restr"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Invalid table name"
msgid "Filter by name or regex"
msgstr "Anv taolenn direizh"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9552,7 +9644,7 @@ msgstr ""
msgid "Database operations"
msgstr "Dibarzhioù diskwel an diazoù roadennoù"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show indexes"
msgid "Show hidden items"
@@ -10780,26 +10872,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11143,59 +11235,59 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "N'haller ket lenn ar restr"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "The bookmark has been deleted."
msgid "Internal relation has been added."
msgstr "Diverket eo bet ar sined."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "N'haller ket lenn ar restr"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "The bookmark has been deleted."
msgid "FOREIGN KEY relation has been removed."
msgstr "Diverket eo bet ar sined."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "N'haller ket lenn ar restr"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "N'haller ket lenn ar restr"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "The bookmark has been deleted."
msgid "Internal relation has been removed."
@@ -11290,41 +11382,45 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid ""
#| "Tracking of changes made in database. Requires the phpMyAdmin "
@@ -11336,13 +11432,13 @@ msgstr ""
"Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ "
"kefluniadurioù phpMyAdmin."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid ""
#| "Tracking of changes made in database. Requires the phpMyAdmin "
@@ -12133,7 +12229,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Other core settings"
msgid "Current Server:"
@@ -17021,9 +17117,6 @@ msgstr ""
#~ msgid "Server traffic (in KiB)"
#~ msgstr "Tremenerezh war ar servijer (e Kio)"
-#~ msgid "Connections since last refresh"
-#~ msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ"
-
#~ msgid "Questions since last refresh"
#~ msgstr "Goulennnoù abaoe ar freskadenn ziwezhañ"
diff --git a/po/bs.po b/po/bs.po
index 117357da2c..825da5bcd2 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-31 14:23+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Prikaži sve"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Lines terminated by"
msgid "Original length"
msgstr "Linije se završavaju sa"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Prekinuto"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Uvoz fajlova"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Izaberi tabele"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Baza ne postoji"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Imena kolona"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Promeni lozinku"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
#, fuzzy
msgid "Generate"
msgstr "Generirao"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Prikaži sve"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "Dodaj novo polje"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Prikaži mrežu"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
msgid "Link with main panel"
msgstr "Opcije za izvoz baze"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
msgid "Unlink from main panel"
msgstr "Opcije za izvoz baze"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tabele"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
msgid "views"
msgstr "Polja"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
msgid "procedures"
msgstr "Procesi"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
msgid "events"
msgstr "Poslato"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "Funkcija"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Izabrani korisnik nije pronađen u tabeli privilegija."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2641,135 +2684,135 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Baza ne postoji"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Verzija servera"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "Izbor servera"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "Prikaži tabele"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignoriši"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Prikaži ponovo ovaj upit"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL upit"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Komentari tabele"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "SQL upit"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodna"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2777,96 +2820,96 @@ msgid "Next"
msgstr "Slijedeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "maj"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2874,78 +2917,78 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "dec"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2953,199 +2996,199 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "nema"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "u sekundi"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Koristi tekst polje"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please select a database"
msgid "Please enter a valid date"
msgstr "Izaberite bazu"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please choose a page to edit"
msgid "Please enter a valid date or time"
msgstr "Izaberite stranu koju menjate"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3216,16 +3259,16 @@ msgstr "na sat"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -3246,7 +3289,7 @@ msgid "Requery"
msgstr "u upitu"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3460,7 +3503,7 @@ msgid "Count:"
msgstr "Kolona"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3672,25 +3715,25 @@ msgstr "Pretraživanje"
msgid "Delete bookmark"
msgstr "Pretraživanje"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3771,6 +3814,16 @@ msgstr "Riječi se odvajaju razmakom (\" \")."
msgid "Inside tables:"
msgstr "Unutar tabela:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Izaberi sve"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "ništa"
+
#: libraries/DbSearch.class.php:455
#, fuzzy
#| msgid "Inside table(s):"
@@ -3839,7 +3892,7 @@ msgid "All"
msgstr "Sve"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
@@ -4159,7 +4212,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -4170,34 +4223,13 @@ msgstr "Server"
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4294,8 +4326,8 @@ msgstr "Dodaj/obriši kolonu"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Baze"
@@ -4414,7 +4446,7 @@ msgid "Recent"
msgstr "Resetuj"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4493,16 +4525,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabele"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -5024,7 +5046,7 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL kaže: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Objasni SQL"
@@ -5041,7 +5063,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
@@ -5161,17 +5183,6 @@ msgstr "Koristi ovu vrijednost"
msgid "Rows"
msgstr "Redova"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Podaci"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5347,7 +5358,7 @@ msgstr "Server"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5355,24 +5366,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5616,7 +5627,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6026,7 +6037,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6036,7 +6047,7 @@ msgstr "Ime"
msgid "Save as file"
msgstr "Sačuvaj kao datoteku"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Karakter set datoteke:"
@@ -6066,17 +6077,17 @@ msgstr "Kompresija"
msgid "Put columns names in the first row"
msgstr "Stavi imena polja u prvi red"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Polja ograničena sa"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6096,16 +6107,16 @@ msgstr "Zamijeni NULL sa"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Linije se završavaju sa"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6186,7 +6197,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Prepiši postojeće fajlove"
@@ -6206,8 +6217,8 @@ msgstr "Dodaj AUTO_INCREMENT vrijednost"
msgid "Enclose table and column names with backquotes"
msgstr "Koristi ' za ograničavanje imena polja"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6326,16 +6337,16 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
msgid "Customize default options."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV format"
@@ -6365,7 +6376,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6415,174 +6426,184 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+msgid "Navigation tree"
+msgstr "Opcije za izvoz baze"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+msgid "Customize the navigation tree."
+msgstr "Opcije za izvoz baze"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
#, fuzzy
msgid "Servers"
msgstr "Server"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Add new field"
msgid "Main panel"
msgstr "Dodaj novo polje"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Broj strane:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Dokumentacija"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "Dokumentacija"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid "Customize export options"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
msgid "Customize navigation panel"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
msgid "Customize main panel"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "Status"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
msgid "Customize startup page."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "Baze"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6590,200 +6611,200 @@ msgstr ""
msgid "Table structure"
msgstr "Baze"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Tabela"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Relaciona shema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Dimenzije papira"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Koristi tekst polje"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
msgid "Customize text input fields."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
msgid "Customize default options"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Stavi imena polja u prvi red"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Dodaj AUTO_INCREMENT vrijednost"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6791,1128 +6812,1182 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
msgid "Maximum items on first level"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
#, fuzzy
msgid "Memory limit"
msgstr "Ograničenja resursa"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Show logo in navigation panel."
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
msgid "Enable navigation tree expansion"
msgstr "Opcije tabele"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Prikaži tabele"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Prikaži mrežu"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Prikaži mrežu"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Prikaži mrežu"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Prikaži listu procesa"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Prikaži mrežu"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Prikaži mrežu"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analiziraj tabelu"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Promijeni redoslijed u tabeli"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
msgid "Table navigation bar"
msgstr "Opcije tabele"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Promjeni ime tabele u "
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Osnovni ključ je upravo dodan %s."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Relaciona shema"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Vrijednost sesije"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentacija"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Ne mogu da se prijavim na MySQL server"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "Konekcije"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bilo koji host"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Bilo koji host"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Baza ne postoji"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Dodaj/obriši kolonu"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Nemoj da mijenjaš lozinku"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Baza podataka"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiziraj tabelu"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Promjenljive"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Popravi tabelu"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Prikazujem komentare kolone"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Ime"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
msgid "Automatically create versions"
msgstr "Verzija servera"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Koristi tabele"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Koristi tabelu hosta"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentari tabele"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži informacije o PHP-u"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
msgid "Show field types"
msgstr "Prikaži tabele"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "Prikaži kompletne upite"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Statistike reda"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dodaj/obriši kolonu"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Podrazumjevano"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7920,52 +7995,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7973,85 +8048,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Korisničko ime:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8077,46 +8152,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentacija"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Opcije za izvoz baze"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8147,7 +8222,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -8223,7 +8298,7 @@ msgstr "Napravi novu stranu"
msgid "Number of columns"
msgstr "Broj redova po strani"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8278,69 +8353,69 @@ msgstr "Tabele"
msgid "Format:"
msgstr "Format"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcije transformacije"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Redova"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Sačuvaj na server u direktorijum %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Šablon imena datoteke"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8348,84 +8423,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Karakter set datoteke:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Kompresija"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zipovano\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzip-ovano\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Sačuvaj kao datoteku"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Napravi novu tabelu u bazi %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "horizontalnom (rotirana zaglavlja)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Sačuvaj kao datoteku"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Izaberi tabele"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Izaberi tabele"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database"
msgid "New database name"
msgstr "Baza podataka"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Nema tabela"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Imena kolona"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -8995,7 +9082,7 @@ msgid "Create an index on %s columns"
msgstr "Napravi ključ na %s kolona"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -9142,11 +9229,6 @@ msgstr "Pet"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Pošalji"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9372,26 +9454,32 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Imena kolona"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
msgid "Events:"
msgstr "Poslato"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "Funkcija"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
msgid "Procedures:"
msgstr "Procesi"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Tabele"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -9417,13 +9505,13 @@ msgstr "Opcije za izvoz baze"
msgid "Reload navigation panel"
msgstr "Opcije za izvoz baze"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9431,26 +9519,26 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Promijeni redoslijed u tabeli"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Sačuvaj kao datoteku"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Promijeni redoslijed u tabeli"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9488,7 +9576,7 @@ msgstr ""
msgid "Database operations"
msgstr "Opcije za izvoz baze"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10755,26 +10843,26 @@ msgstr "Imena kolona"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11164,60 +11252,60 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Izmjene su sačuvane"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Datoteku nije moguće pročitati"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
msgid "Internal relation has been added."
msgstr "Opšte osobine relacija"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Datoteku nije moguće pročitati"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Izmjene su sačuvane"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Datoteku nije moguće pročitati"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Datoteku nije moguće pročitati"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
msgid "Internal relation has been removed."
msgstr "Opšte osobine relacija"
@@ -11316,54 +11404,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Promjeni ime tabele u "
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "nema opisa"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12160,7 +12254,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17400,9 +17494,6 @@ msgstr ""
#~ msgid "Reset"
#~ msgstr "Resetuj"
-#~ msgid "Show processes"
-#~ msgstr "Prikaži listu procesa"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Resetuj"
diff --git a/po/ca.po b/po/ca.po
index 8eabf848dc..4f76769be6 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-05-30 17:56+0200\n"
"Last-Translator: josep constanti
to toggle column's visibility."
msgstr ""
"Prem a la fletxa de llista desplegable
per alternar la visibilitat de "
"la columna."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Mostra tot"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2344,13 +2387,13 @@ msgstr ""
"l'edició de quadrícula, checkbox, Editar, Copiar i Esborrar enllaços poden "
"no funcionar després de desar."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Introdueix una cadena hexadecimal correcta. Els caracters vàlids són 0-9 i A-"
"F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2358,133 +2401,133 @@ msgstr ""
"De veritat vols veure totes les files? Una taula gran pot fer fallar el "
"navegador."
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "String original"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "Cancel.lar"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Avortat"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Correcte"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Importar l'estat"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Deixa anar els arxius aquí"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Tria primer la base de dades"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "També pots editar més valors
fent doble-clic en el seu contingut."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"També pots editar la majoria dels valors
prement directament en el seu "
"contingut."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Vés a l'enllaç:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Copia el nom de la columna."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Feu clic amb el botó dret al nom de la columna per copiar al porta-retalls."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Genera una contrasenya"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Canvi de contrasenya"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Més"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Mostra el panell"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Amagar el panell"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Mostra l'arbre d'ítems amagat."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Enllaç amb el panell principal"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Desenllaça amb el panell principal"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Per a filtrar totes les bases de dades al servidor, prem Enter després d'un "
"terme de la cerca"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Per a filtrar %s a la base de dades, prem Enter després d'un terme de cerca"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "taules"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "vistes"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "procediments"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "esdeveniments"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "funcions"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "No s'ha trobat la pàgina demanada a l'historial, pot haver caducat."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2494,43 +2537,43 @@ msgstr ""
"actualitzar-la. La nova versió és la %s, alliberada el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", darrera versió estable:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "actualitzat"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Crea una vista"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Enviar informe d'error"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Introduir informe d'error"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
"S'ha produït un error fatal de JavaScript. Vols enviar un informe d'errors?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Canviar les configuracions d'informes"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Mostra el detall dels informes"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2538,7 +2581,7 @@ msgstr ""
"La vostra exportació és incomplerta degut al límit de temps d'execució massa "
"baix a nivell de PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2547,64 +2590,64 @@ msgstr ""
"Avís: un formulari d'aquesta pàgina té més de %d camps. En enviar-lo es "
"poden ignorar alguns camps donada la configuració «max_input_vars» de PHP."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Detectats alguns errors al servidor!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Mira al peu d'aquesta finestra."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignora tot"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Un moment, s'estan enviant en aquest moment degut a la teva configuració."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Executar aquesta consulta de nou?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Realment vols esborrar aquesta marca?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Enter executes queries in console"
msgid "%s queries executed %s times in %s seconds."
msgstr "Enter executa consultes a la consola"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Comentaris de la taula"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Amaga els resultats de cerca"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2615,331 +2658,331 @@ msgstr ""
"correctament. En Safari, aixó pot estar causat pel \"Mode de Navegació "
"Privada\"."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Mes anterior"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Mes següent"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Avui"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Gener"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Febrer"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Març"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Abril"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Maig"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Juny"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Juliol"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Agost"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Setembre"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Octubre"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Novembre"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Desembre"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Des"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Diumenge"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Dilluns"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Dimarts"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Dimecres"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Dijous"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Divendres"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Dissabte"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Dis"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Dg"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Dl"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Dm"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Dc"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Dj"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Dv"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Ds"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Se"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendari-mes-any"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "Sufix de l'any"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Segon"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Aquest camp és obligatori"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Corregeix aquest camp"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Entra una adreça de correu electrònic vàlida"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Entra una URL vàlida"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Entra una data vàlida"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Entra una data vàlida (ISO)"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Entra un numero vàlid"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Entra un numero vàlid de targeta de crèdit"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Entra només digits"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Entra el mateix valor un altre cop"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Entra no més de {0} caracters"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Entra al menys {0} caracters"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Entra un valor de entre {0} i {1} caracters de mida"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Entra un valor entre {0} i {1}"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Entra un valor menor o igual a {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Entra un valor més gran o igual a {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Entra una hora o data vàlida"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Entra valor HEX correcte"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3014,18 +3057,18 @@ msgstr "per hora"
msgid "per day"
msgstr "per dia"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "No es pot llegir l'arxiu de configuració existent (%s)."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Permisos incorrectes a l'arxiu de configuració, no pot ser modificable per "
"tothom!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Tamany de lletra"
@@ -3044,7 +3087,7 @@ msgid "Requery"
msgstr "Re-consulta"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3242,7 +3285,7 @@ msgid "Count:"
msgstr "Nombre"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3417,7 +3460,7 @@ msgstr "Actualitzar consulta desada"
msgid "Delete bookmark"
msgstr "Esborrar consultab desada"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3425,19 +3468,19 @@ msgstr ""
"El servidor no està responent (o el sòcol del servidor local MySQL no està "
"configurat correctament)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "El servidor no respon."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Comprova els permisos del directori que conté la base de dades."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detalls…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La connexió de l'usuari de control ha fallat, tal com està definida ara a la "
@@ -3513,6 +3556,16 @@ msgstr "Paraules separades per un espai (\" \")."
msgid "Inside tables:"
msgstr "Dins les taules:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Tria Tot"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Desmarca tot"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Dins la columna:"
@@ -3566,7 +3619,7 @@ msgid "All"
msgstr "Tot"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Nombre de files:"
@@ -3864,7 +3917,7 @@ msgstr ""
"esborrar."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Servidor"
@@ -3875,34 +3928,13 @@ msgstr "Servidor"
msgid "View"
msgstr "Vista"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Estructura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3997,8 +4029,8 @@ msgstr "Columnes centrals"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Bases de dades"
@@ -4101,7 +4133,7 @@ msgid "Recent"
msgstr "Recent"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Taules favorites"
@@ -4170,16 +4202,6 @@ msgstr "Unions"
msgid "Sorting"
msgstr "Classificant"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Taules"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Coordinador de transaccions"
@@ -4752,7 +4774,7 @@ msgstr "Màx: %s%s"
msgid "MySQL said: "
msgstr "MySQL diu: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Explica SQL"
@@ -4769,7 +4791,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Sense codi PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Crea codi PHP"
@@ -4883,17 +4905,6 @@ msgstr "Fes servir aquest valor"
msgid "Rows"
msgstr "Fila"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Dades"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5058,7 +5069,7 @@ msgstr "Servidor %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Mètode d'identificació incorrecte establert a la configuració:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5070,24 +5081,24 @@ msgstr ""
"phpMyAdmin fa servir actualment el fus horari per defecte del servidor de "
"base de dades."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Es necessari actualitzar a %s %s o posterior."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Error: No coincideix un «token»"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "intent de sobreescriure la variable GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "possible aprofitament"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "detectat teclat numéric"
@@ -5315,7 +5326,7 @@ msgid "Set value: %s"
msgstr "Estableix valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Restaura el valor per defecte"
@@ -5783,7 +5794,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Màxim temps d'execució"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "Usar l'instrucció %s"
@@ -5792,7 +5803,7 @@ msgstr "Usar l'instrucció %s"
msgid "Save as file"
msgstr "Desa com a arxiu"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Joc de caràcters de l'arxiu"
@@ -5819,15 +5830,15 @@ msgstr "Compresió"
msgid "Put columns names in the first row"
msgstr "Posa els noms de columnes a la primera fila"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Columnes delimitades amb"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Fi de columna amb"
@@ -5843,14 +5854,14 @@ msgstr "Canvía NULL amb"
msgid "Remove CRLF characters within columns"
msgstr "Treu caràcters CRLF de dins les columnes"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Columnes acabades amb"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Línies acabades amb"
@@ -5920,7 +5931,7 @@ msgid "Save on server"
msgstr "Desa al servidor"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Sobreescriu arxiu(s) existent(s)"
@@ -5937,8 +5948,8 @@ msgstr "Afegeix valor AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Usa -backquotes- amb noms de taules i columnes"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Modus de compatibilitat SQL"
@@ -6058,15 +6069,15 @@ msgid "Customize browse mode."
msgstr "Configura el mode de navegació."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Configura les opcions predeterminades."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6094,7 +6105,7 @@ msgstr "Predeterminats d'exportació"
msgid "Customize default export options."
msgstr "Configura les opcions predeterminades d'exportació."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Propietats"
@@ -6141,40 +6152,52 @@ msgstr "Panell de navegació"
msgid "Customize appearance of the navigation panel."
msgstr "Personalitzar l'aspecte del panell de navegació."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Panell de navegació"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Configurar el panell de navegació"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servidors"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Opcions de visualització dels servidors."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Opcions de visualització de les taules."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Panell principal"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Altres paràmetres principals"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Paràmetres que no encaixaven en cap altre lloc."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Títols de pàgina"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6183,11 +6206,11 @@ msgstr ""
"[doc@faq6-27]la documentació[/doc] per a cadenes màgiques que es puguin "
"usar per obtenir valors especials."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Seguretat"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6195,23 +6218,23 @@ msgstr ""
"Noteu que phpMyAdmin només és una interfície d'usuari i les seves "
"característiques no limiten a MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Paràmetres bàsics"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Autenticació"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Paràmetres d'autenticació."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Configuració del servidor"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6219,15 +6242,15 @@ msgstr ""
"Configuració avançada del servidor, no canvieu aquestes opcions si no sabeu "
"el que fan."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Entra els paràmetres de connexió al servidor."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Infraestructura de taules enllaçades"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6237,11 +6260,11 @@ msgstr ""
"a característiques addicionals, consulteu [doc@linked-tables]infraestructura "
"de taules enllaçades[/doc] a la documentació."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Seguiment de canvis"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6249,111 +6272,111 @@ msgstr ""
"Seguiment de canvis a la base de dades. Necessita de la infraestructura de "
"taules enllaçades de phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Configurar valors d'expotació predeterminats"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Configurar valors d'importació predeterminats"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Configurar el panell de navegació"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Configurar el panell principal"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Consultes SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Caixa de consultes SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Configura els enllaços mostrats a les caixes de consultes SQL."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Opcions de consultes SQL."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Inici"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Configura la pàgina d'inici."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Estructura de base de dades"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Tria els detalls a mostrar en l'estructura de base de dades (llista de "
"taules)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Estructura de taula"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Configuració de l'estructura de la taula (llista de columnes)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Pestanyes"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Tria cóm vols que treballin les pestanyes."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Mostra l'esquema relacional"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Tamany de paper"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Camps de text"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Configurar els camps d'entrada de text."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "text Texy!"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Configura les opcions predeterminades"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Avisos"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Desactiva alguns dels avisos mostrats per phpMyAdmin."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6361,15 +6384,15 @@ msgstr ""
"Activa la compressió [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] per a les "
"operacions d'importació i exportació."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Paràmetres adiccionals per iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6377,11 +6400,11 @@ msgstr ""
"Si està activat, phpMyAdmin continuarà processant consultes de múltiples "
"instruccions fins la darrera encara que alguna anterior falli."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignora errors d'instruccions multiples"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6391,25 +6414,25 @@ msgstr ""
"límit de temps. Pot ser una opció per importar grans arxius, tanmateix pot "
"trencar transaccions."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Importació parcial: permet interrompre"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "No avortar en cas d'error d' INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6417,69 +6440,69 @@ msgstr ""
"Format predeterminat; sigueu conscient que la llista depén de la situació "
"(base de dades, taula) i només SQL està sempre disponible."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Format de l'arxiu importat"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Usa clau LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Noms de columnes a la primera fila"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "No importis files buides"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importar monedes ($5.00 a 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importar percentatges amb els decimals adients (12.00% a .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Nombre de consultes a saltar des de l'inici."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Importació parcial: saltar consultes"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "No feu servir AUTO_INCREMENT per a valors zero"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Estat inicial per a les barres de desplaçament"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Quantes files es poden inserir de cop."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Nombre de files a inserir"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Màxim nombre de caràcters mostrats a qualsevol columna no-numèrica a la "
"vista de navegació."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Limit de caràcters de la columna"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6490,11 +6513,11 @@ msgstr ""
"actual. Establint aixó a FALSE fa més fàcil oblidar desconectar-se d'altres "
"servidors quan estàs connectat a més d'un."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Esborra totes les galetes al desconnectar"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6502,11 +6525,11 @@ msgstr ""
"Defineix si l'anterior autenticació s'ha de recuperar o no al mode "
"d'autenticació per [kbd]galetes [/kbd]."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Nom d'usuari de recuperació"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6518,50 +6541,50 @@ msgstr ""
"la sessió actual, i s'esborraran tant aviat com tanquis la finestra del "
"navegador. Aixó es recomana per a entorns no confiables."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Emmagatzema les galetes de connexió"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
"Definiu durant quant de temps (en segons) una galeta d'autenticació és "
"vàlida."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Validesa de l'autenticació per galetes"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Doble tamany de textarea per a columnes LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "textarea més gran per a LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Màxim nombre de caràcters usats quan es mostra una consulta SQL."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Tamany màxim de SQL mostrat"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Els usuaris no poden establir un valor més gran"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Màxim nombre de bases de dades mostrades a la llista."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Màxim de bases de dades"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6569,11 +6592,11 @@ msgstr ""
"El nombre d'items que es poden mostrar a cadapàgina en el primer nivell de "
"l'arbre de navegació."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Màxim nombre d'items al primer nivell"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6581,11 +6604,11 @@ msgstr ""
"El nombre d'items que es poden mostrar a cada pàgina de l'arbre de "
"navegació."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Màxim nombre d'elements en una branca"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6593,19 +6616,19 @@ msgstr ""
"Nombre de files mostrades quan es navega mper un resultat. Si el resultat "
"conté més files, es mostraran els enllaços \"Anterior\" i \"Següent\"."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Màxim nombre de files a mostrar"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Màxim nombre de taules mostrades a la llista de taules."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Màxim de taules"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6613,41 +6636,41 @@ msgstr ""
"El nombre d'octets que una ordre està autoritzada a reservar, ex. [kbd]32M[/"
"kbd] ([kbd]0[/kbd] per no posar límit)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Límit de memoria"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"Al panell de navegació, substitueix l'arbre de bases de dades amb un selector"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Mostra a navegació de les bases de dades com un arbre"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Enllaç amb el panell principal destacant l'actual base de dades o taula."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Mostra el logo al panell de navegació."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Mostra el logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL on apuntarà el logo al panell de navegació."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Enllaç d'URL al logo"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6655,27 +6678,27 @@ msgstr ""
"Obrir la pàgina enllaçada a la finestra principal ([kbd]main[/kbd]) o bé a "
"una de nova ([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Destí d'enllaç al logo"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Mostra el servidor triat a dalt del panell de navegació."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Mostra la tría de servidors"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Destí per a la icona d'accés ràpid"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Destí per a l'icona del segon accés ràpid"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6683,15 +6706,15 @@ msgstr ""
"Nombre mínim nombre d'elements (taules, vistes, rutines i events) a mostrar "
"en una caixa de filtre."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Mínim nombre d'items per a mostrar a la caixa de filtre"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Mínim nombre de bases de dades a mostrar a la caixa de filtre"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6703,104 +6726,163 @@ msgstr ""
"Agrupar ítems a l'arbre de navegació (determinat pel separador definit tot "
"seguit)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Agrupar elements en l'arbre"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Text que separa bases de dades en diferents nivells d'arbre."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Separador per l'arbre de bases de dades"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Text que separa taules en diferents nivells d'arbre."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Separador d'arbre de taules"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Màxima profunditat de l'arbre de taules"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Resalta el servidor sota el cursor del ratolí."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Activa resaltat"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"Quan s'ofereix la possibilitat d'expandir l'arbre al panell de navegació."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Qctiva l'expansió de l'arbre de navegació"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr "Màxim nombre de taules usades recentment; indiqueu 0 per desactivar."
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr "Màxim nombre de taules preferides; indiqueu 0 per desactivar."
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Mostra/Amaga la llista de taules"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr "Taules usades recentment"
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"Quan s'ofereix la possibilitat d'expandir l'arbre al panell de navegació."
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr "Aquests són els enllaços a Edició, Còpia i Esborrat."
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Mostra versions"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr "Ón de mostrar els vincles de fila de taula"
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Mostra a navegació de les bases de dades com un arbre"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Mostra els camps de funció"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Mostra els processos"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Mostra versions"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Mostra a navegació de les bases de dades com un arbre"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr "Màxim nombre de taules usades recentment; indiqueu 0 per desactivar."
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr "Màxim nombre de taules preferides; indiqueu 0 per desactivar."
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr "Taules usades recentment"
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr "Aquests són els enllaços a Edició, Còpia i Esborrat."
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr "Ón de mostrar els vincles de fila de taula"
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "Usa l'ordre natural per ordenar els noms de taules i bases de dades."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Ordre natural"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Usa només icones, només text o bé ambdós."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Barra de navegació de taules"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Utilitza la memòria cau de sortida per GZip per incrementar la velocitat en "
"transferències HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Memòria cau de sortida per GZip"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6808,19 +6890,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. ordre descendent per columnes de tipus TIME, DATE, "
"DATETIME i TIMESTAMP, ordre descendent ascendent a la resta."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Ordre de clasificació predeterminat"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Utilitza connexions persistents a bases de dades MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Connexions persistents"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6830,11 +6912,11 @@ msgstr ""
"l'estructura de la base de dades, si qualsevol de les taules necessàries per "
"a l'infraestructura de taules enllaçades de phpMyAdmin no s'ha pogut trobar."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6842,11 +6924,11 @@ msgstr ""
"Desactiva l'avís per defecte que es mostra si es detecten diferències entre "
"la llibreria MySQL i el servidor."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Avís de diferència en servidor/llibreria"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6854,27 +6936,27 @@ msgstr ""
"Desactiva l'avís per defecte que es mostra a la pàgina de l'estructura si "
"els noms de les columnes a la taula són paraules reservades de MySQL."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Avís de paraula reservada de MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Còm mostrar les pestanyes del menù"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Cóm mostrar diversos enllaços d'accions"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Desactiva l'edició en columnes tipus BLOB i BINARY."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Protegeix les columnes de contingut binari"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6885,106 +6967,106 @@ msgstr ""
"fan servir rutines JS per mostrar l'historial de consultes (es perd al "
"tancar la finestra)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Historial permanent de consultes"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Quàntes consultes s'han de desar a l'historial."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Tamany de l'historial de consultes"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Selecciona quines funcions s'usaràn per a conversions de jocs de caràcters."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Motor d'enregistrament"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Al navegar per les taules, es recorda la classificació de cada taula."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Recordar l'ordenació de les taules"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Ordenació per defecte per a taules amb clau principal."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Ordre de clasificació de la clau principal"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Repeteix les capçeleres cada X cel.les, [kbd]0[/kbd] desactiva la funció."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Repeteix capçeleres"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Edició de graella: disparador d'acció"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Relació a mostrar"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Per les opcions de visualització"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Edició de graella: Desa totes les cel.les editades alhora"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Directori del servidor on pots desar les exportacions."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Directori de desades"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Deixa en blanc si no l'utilitzes."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Ordre d'autenticació del servidor"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Deixa en blanc per als predeterminats."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Regles d'autenticació del servidor"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Permetre connexions sense contrasenya"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Permet la connexió de root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Zona horària de la sessió"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6992,17 +7074,17 @@ msgstr ""
"Estableix el fus horari efectiu; possiblement diferent del del teu servidor "
"de base de dades"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Nom del Domini HTTP -HTTP Basic Auth Realm- per a mostrar a l'autenticació "
"HTTP."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "Domini HTTP"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7012,19 +7094,19 @@ msgstr ""
"maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /"
"etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "Arxiu de configuració SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Mètode d'autenticació a usar."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipus d'autenticació"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7032,11 +7114,11 @@ msgstr ""
"Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]consultes desades[/a], suggerit: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Taula de consultes desades"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7044,31 +7126,31 @@ msgstr ""
"Deixa en blanc per no usar comentaris de columna o tipus mime, suggerit: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Taula d'informació de columna"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Connexió comprimida al servidor MySQL."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Connexió comprimida"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Cóm connectar al servidor, deixa [kbd]tcp[/kbd] si no estàs segur."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Tipus de connexió"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Contrasenya de l'usuari de control"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7076,11 +7158,11 @@ msgstr ""
"Usuari MySQL especial configurat amb permisos restringits, més informació "
"disponible al [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Usuari de control"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7088,11 +7170,11 @@ msgstr ""
"Un hoste alternatiu per mantenir l'emmagatzematge de la configuració, deixa "
"en blanc per utilitzar la màquina ja definida."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Servidor de control"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7102,15 +7184,15 @@ msgstr ""
"configuració, deixa en blanc per utilitzar el port per defecte, o el port ja "
"definit, si l'hoste de control és el mateix."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Port de control"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Amagar les bases de dades que compleixin una expresió regular (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7118,15 +7200,15 @@ msgstr ""
"Més informació a [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
"tracker[/a] i [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desactiva l'ús d'INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Amagar bases de dades"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7134,23 +7216,23 @@ msgstr ""
"Deixa en blanc per desactivar el suport d'historial de consultes SQL, "
"suggerit: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Taula d'historial de consultes SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Nom del servidor ón MySQL és en marxa."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Nom del servidor"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL de desconnexió"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7158,15 +7240,15 @@ msgstr ""
"Limita el nombre de preferències de taula que s'emmagatzemen a la base de "
"dades, els registres més antics s'eliminen automàticament."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Màxim nombre de preferències de taules a desar"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Taula de consultes QBE desades"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7174,11 +7256,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport de consultes QBE desades, suggerit: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Taula de columnes centrals"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7186,15 +7268,15 @@ msgstr ""
"Deixa en blanc per desactivar el suport de columnes centrals, suggerit: "
"[kbd]pma__central_colums[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Intentar connectar sense contrasenya."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Connexió sense contrasenya"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7204,30 +7286,30 @@ msgstr ""
"servir als teus texts, ex.: usa [kbd]'my\\_db'[/kbd] i no [kbd]'my_db'[/"
"kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Mostra només les bases de dades de la llista"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Deixa en blanc si no utilitzes l'autenticació config."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Contrasenya autenticació config"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "Esquema PDF: taula de pàgines"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7238,22 +7320,22 @@ msgstr ""
"tenir informació més completa. Deixa en blanc per no utilitzar. Suggerit: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nom de base de dades"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Port ón el servidor MySQL està escoltatt, deixa en blanc per al "
"predeterminat."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Port del servidor"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7261,11 +7343,11 @@ msgstr ""
"Deixa en blanc per treure la \"persistència\" de taules usades recentment "
"entre sessions, suggerit: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Taula usada recentment"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7273,11 +7355,11 @@ msgstr ""
"Deixa en blanc per treure la \"persistència\" de taules preferides entre "
"sessions, suggerit: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Taula preferida"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7285,11 +7367,11 @@ msgstr ""
"Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/"
"relation]enllaços de relacions[/a], suggerit: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Taula de relacions"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7297,33 +7379,33 @@ msgstr ""
"Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus "
"d'autenticació[/a] per veure exemples."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Nom de sessió signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "URL signon"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Sócol ón el servidor MySQL està escoltant, deixa en blanc per al "
"predeterminat."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Sócol del servidor"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Activa SSL per la connexió amb el servidor MySQL."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Usa SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7331,11 +7413,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Dissenyador i esquema PDF: taula de coordinades"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7343,11 +7425,11 @@ msgstr ""
"Taula per descriure les columnes a mostrar, deixa en blanc per desactivar; "
"suggerit: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Taula de descripció de columnes"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7356,11 +7438,11 @@ msgstr ""
"d'interfase de taules entre sessions, suggerit: [kbd]pma__table_uiprefs[/"
"kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Preferències d'interfase de taula"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7368,11 +7450,11 @@ msgstr ""
"Si una instrucció DROP DATABASE IF EXISTS s'afegirà com a primera línia en "
"el registre a l'hora de crear una base de dades."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Afegir DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7380,11 +7462,11 @@ msgstr ""
"Si una instrucció DROP TABLE IF EXISTS s'afegirà com a primera línia en el "
"registre a l'hora de crear una taula."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Afegir DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7392,21 +7474,21 @@ msgstr ""
"Si una instrucció DROP VIEW IF EXISTS s'afegirà com a primera línia en el "
"registre a l'hora de crear una vista."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Afegir DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Defineix la llista d'instruccions que l'auto-creació fa servir per a noves "
"versions."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Instruccions a seguir"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7414,11 +7496,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport de seguiment de consultes SQL, "
"suggerit: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Taula de seguiment de consultes SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7426,11 +7508,11 @@ msgstr ""
"SI el mecanisme de seguiment crearà versions per a taules i vistes "
"automàticament."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Crear versions automàticament"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7438,11 +7520,11 @@ msgstr ""
"Deixa en blanc per no desar les preferències de l'usuari en base de dades, "
"suggerit: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Taula de preferències de l'usuari"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7452,11 +7534,11 @@ msgstr ""
"la funcionalitat de menús configurables; deixant una d'ambdues en blanc "
"desactivarà aquesta funcionalitat, suggerit: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Taula d'usuaris"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7466,11 +7548,11 @@ msgstr ""
"funcionalitat de menús configurables; deixant una d'ambdues en blanc "
"desactivarà aquesta funcionalitat, suggerit: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Taula de grups d'usuaris"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7478,15 +7560,15 @@ msgstr ""
"Deixa en blanc per desactivar la funcionalitat d'amagar i mostrar elements "
"de navegació, suggerit: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Taula d'elements de navegació amagada"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Usuari per autenticació config"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7494,20 +7576,20 @@ msgstr ""
"Descripció per a l'usuari d'aquest servidor. Deixar en blanc per mostrar el "
"nom del servidor en lloc seu."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Nom explicatiu d'aquest servidor"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Si a un usuari se l'hauria de mostrar el botó \"mostrar totes (les files)\"."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Permet mostrar totes les files"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7517,15 +7599,15 @@ msgstr ""
"a que la contrasenya està inclosa al arxiu de configuració; aixó no limita "
"la posibilitat d'executar la mateixa ordre directament."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Mostra el formulari de canvi de contrasenya"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Mostra el formulari de creació de base de dades"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7534,45 +7616,45 @@ msgstr ""
"Mostrar o amagar una columna amb la data i hora de creació per a totes les "
"taules."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Comentaris de la taula"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Mostrar o amagar una columna amb la data i hora de creació per a totes les "
"taules."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Mostra el temps de creació"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Mostrar o amagar una columna que mostra la data i hora de la darrera "
"actualització per a totes les taules."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Mostra data i hora de la darrera actualització"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Mostrar o amagar una columna que mostra la data i hora de la darrera "
"comprovació per a totes les taules."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Mostra el temps de la darrera comprovació"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7580,27 +7662,27 @@ msgstr ""
"Defineix si els tipus de camps han d'aparèixer en un principi en el mode "
"d'edició/inserció."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Mostra tipus de camps"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Mostra els camps de funció en modes edició/inserció."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Mostra els camps de funció"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Mostrar o no ajudes."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Mostra ajudes"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7608,55 +7690,55 @@ msgstr ""
"Mostra l'enllaç a la sortida de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Mostra l'enllaç a phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Mostra informació detallada del servidor MySQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Defineix si s'han de mostrar les consultes SQL creades per phpMyAdmin."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Mostra consultes SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Defineix si el quadre de consulta ha de romandre a la pantalla després de la "
"seva presentació."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Mantenir el quadre de consultes"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Permet mostrar estadístiques de base de dades i de taula (ex. espai usat)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Mostra estadístiques"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Marca les taules en ús i permet mostrar les bases de dades amb taules "
"bloquejades."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Salta taules bloquejades"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7664,11 +7746,11 @@ msgstr ""
"Desactiva l'avís per defecte que es mostra a la pàgina principal si es "
"detecta Suoshin."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "avís Suoshin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7678,11 +7760,11 @@ msgstr ""
"establert de la variable de PHP session.gc_maxlifetime és menor que el de "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Avís de validesa de la cookie d'autenticació"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7690,11 +7772,11 @@ msgstr ""
"Tamany de textarea (columnes) en mode d'edició, aquest valor s'augmentarà "
"per a textareas de consultes SQL (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Columnes per a textareas"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7702,32 +7784,32 @@ msgstr ""
"Tamany de textarea (files) en mode d'edició, aquest valor s'augmentarà per a "
"textareas de consultes SQL (*2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Files per a textareas"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
"Títol de la finestra del navegador quan es selecciona una base de dades."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Títol de la finestra del navegador quan no hi ha res seleccionat."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Títol per defecte"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Títol de la finestra del navegador quan es selecciona un servidor."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Títol de la finestra del navegador quan es selecciona una taula."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7739,27 +7821,27 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) procedent del proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Llista de proxies confiables per autoritzar/prohibir IP"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Directori al servidor ón pots pujar arxius per importar."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Directori de pujades"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Permet cercar dins de tota la base de dades."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Usa cerca de base de dades"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7767,28 +7849,28 @@ msgstr ""
"Quan està desactivada, els usuaris no poden configurar qualsevol de les "
"següents opcions, independentment de la casella de selecció a la dreta."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Activa la pestanya del Desenvolupador en les opcions"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Comprova la darrera versió"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Activa la comprovació de la darrera versió a la pàgina principal de "
"phpMyAdmin."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Comprovació de versió"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7800,11 +7882,11 @@ msgstr ""
"servidor òn està instal.lat phpMyAdmin no té accés directe a internet. El "
"formato es: \"servidor:port\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "URL del proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7814,19 +7896,19 @@ msgstr ""
"autenticació. Si es dona un nom d'usuari, es farà una autenticació bàsica. "
"Actualment no hi ha compatibilitat amb altres tipus d'autenticació."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Nom d'usuari del proxy"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "La contrasenya per autenticar amb el proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Contrasenya del proxy"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7834,35 +7916,35 @@ msgstr ""
"Activa la compressió [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/"
"a] per a les operacions d'importació i exportació."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Entra la teva clau pública pel teu domini del servei reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Clau pùblica per a reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Entra la teva clau privada pel teu domini del servei reCaptcha."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Clau privada per a reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Tria l'acció per defecte quan s'enviin informes d'error."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Enviar informes d'error"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7870,11 +7952,11 @@ msgstr ""
"Les consultes s'executen prement Enter (en lloc de Ctrl+Enter). Les noves "
"línies s'afegiran amb Majúscules+Enter."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Enter executa consultes a la consola"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7882,7 +7964,7 @@ msgstr ""
"Activar el mode de «Configuració Zero» que et permet definir les taules "
"d'emmagatzemament de configuració de phpMyAdmin automàticament."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Activa el mode Configuració Zero"
@@ -7908,44 +7990,44 @@ msgstr "Autenticació HTTP"
msgid "Signon authentication"
msgstr "autenticació Signon"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV usant LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Full de càlcul OpenDocument"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Ràpid"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Usuari"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Opcions d'exportació de bases de dades"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV per dades de MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Texte OpenDocument"
@@ -7976,7 +8058,7 @@ msgstr ""
"Estàs fent servir l'extensió -mysql- ja obsoleta per a phpMyAdmin. Considera "
"instal.lar l'extensió -mysqli-."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
"No es poden carregar les extensions d'esquema, comprova l'instal.lació!"
@@ -8046,7 +8128,7 @@ msgstr "Crea una taula"
msgid "Number of columns"
msgstr "Nombre de columnes"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"No es poden carregar les extensions d'exportació, comprova l'instal.lació!"
@@ -8090,11 +8172,11 @@ msgstr "Taula(es):"
msgid "Format:"
msgstr "Format:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Opcions específiques del format:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8102,52 +8184,52 @@ msgstr ""
"Desplaça avall per a les opcions del format triat i ignora les opcions per "
"altres formats."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Conversió de codificació:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Files:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Bolca alguna(es) fila(es)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Fila que comença a:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Bolca totes les files"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Sortida:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Desa al servidor al directori %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Nom d'arxiu de plantilla:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ serà el nom del servidor"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ serà el nom de la base de dades"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ serà el nom de la taula"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8159,64 +8241,76 @@ msgstr ""
"%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:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "usa això per futures exportacions"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Joc de caràcters de l'arxiu:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Compressió:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "comprimit amb zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "comprimit amb gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Veure la sortida com a texte"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Exportar les vistes com taules"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Exportar encapçalats de taules"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Reanomenar les bases de dades/taules/columnes exportades"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Desa la sortida com a arxiu"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Ometre taules més grans que"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Tria la base de dades"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Tria la taula"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nom de la nova base de dades"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nom de la nova taula"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Nom de l'antiga columna"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nom de la nova columna"
@@ -8844,7 +8938,7 @@ msgid "Create an index on %s columns"
msgstr "Crea un índex de %s columnes"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Amaga"
@@ -8979,11 +9073,6 @@ msgstr "De"
msgid "To"
msgstr "A"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Envia"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Afegir prefix de taula:"
@@ -9198,22 +9287,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "S'ha produït un error en carregar la visualització de navegació"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Nom de grup:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Esdeveniments:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funcions:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procediments:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Taules:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Vistes:"
@@ -9239,7 +9334,7 @@ msgstr "Panell de navegació"
msgid "Reload navigation panel"
msgstr "Recarrega el panell de navegació"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9248,27 +9343,27 @@ msgstr ""
"rendiment. Considera desactivar l'agrupació d'elements al panell de "
"navegació."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s resultat trobat"
msgstr[1] "%s resultats trobats"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "filtrar bases de dades pel nom o expresió regular"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Buidar filtre ràpid"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtrar pel nom o expresió regular"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Col.lapsar tots"
@@ -9303,7 +9398,7 @@ msgstr "Nou"
msgid "Database operations"
msgstr "Operacions de base de dades"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Mostra elements ocults"
@@ -10534,13 +10629,13 @@ msgstr "Nom de les columnes: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Paràmetre incorrecte per importació CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10550,13 +10645,13 @@ msgstr ""
"s'han escrit correctament, separats per comes i sense incloure'ls entre "
"cometes."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Format incorrecte a l'entrada CSV a la línia %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d."
@@ -10953,47 +11048,47 @@ msgstr "Formateig del text com a JSON amb resaltat de sintaxi."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formateig del text com a XML amb resaltat de sintaxi."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Error: la relació ja existeix."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "S'ha afegit una relació de CLAU EXTERNA."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Error: La relació de CLAU EXTERNA no s'ha afegit!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Error. Índex no trobat en columna (es)."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Error: Funcionalitats relacionals desactivades!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Afegida relació interna."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Error: La relació interna no s'ha pogut afegir!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Eliminada la relació de CLAU EXTERNA."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Error: La relació de CLAU EXTERNA no es pot eliminar!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Error: La relació interna no es pot eliminar!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Relació interna eliminada."
@@ -11078,20 +11173,26 @@ msgstr "Desant cerques de Consulta-Per-Exemple"
msgid "Managing Central list of columns"
msgstr "Gestió de la llista central de columnes"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Recordar l'ordenació de les taules"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Passos ràpids per a activar les característiques avançades:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "Crea les taules necessàries amb %screate_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Crea un usuari pma i dona-li accés a aquestes taules."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11100,16 +11201,16 @@ msgstr ""
"(config.inc.php), partint, per exemple, de l'arxiu config."
"sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Re-entra a phpMyAdmin per a carregar l'arxiu de configuració actualitzat."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "sense descripció"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
@@ -11119,7 +11220,7 @@ msgstr ""
"d'anar a la pestanya 'Operacions' de qualsevol base de dades per establir la "
"configuració d'enmagatzemament de phpMyAdmin allí."
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -11128,7 +11229,7 @@ msgstr ""
"%sCrea%s una base de dades de nom 'phpmyadmin' i estableix la configuració "
"d'enmagatzemament de phpMyAdmin aqui."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@@ -11136,7 +11237,7 @@ msgstr ""
"%sCrea%s la configuració d'enmagatzemamant de phpMyAdmin a la base de dades "
"actual."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11888,7 +11989,7 @@ msgstr "No hi ha esdeveniments per mostrar."
msgid "Ignoring unsupported language code."
msgstr "Ignorant codi d'idioma no suportat."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Servidor actual:"
@@ -16721,9 +16822,6 @@ msgstr "{concurrent_insert} està establert a 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Esborra les dades de seguiment per aquesta taula"
-#~ msgid "Show versions"
-#~ msgstr "Mostra versions"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18049,9 +18147,6 @@ msgstr "{concurrent_insert} està establert a 0"
#~ msgid "Reset"
#~ msgstr "Reinicia"
-#~ msgid "Show processes"
-#~ msgstr "Mostra els processos"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reinicialitza"
diff --git a/po/ckb.po b/po/ckb.po
index 83e01c9d99..9b4a0aed78 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-22 11:43+0200\n"
"Last-Translator: Zrng Abdulla
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "ههمووی ببینه"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Linestring"
msgid "Original length"
msgstr "ڕیزبهندی هێڵی"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "واژلێهێنان"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "پووچەڵ کرایەوە"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "سەرکەوتووبوو"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "ئاستی هێنان"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "پەڕگەکانت لە ئێرە دابنێ"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "بنکەیەکی دراوە هەڵبژێرە لە پێشدا"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "بڕۆ بۆ بەستەر:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "ڕوونووسکردنی ناوی بەستەر."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "کرتەی ڕاست لەسەر ناوی ستون بکە بۆ لەبەرگرتنەوەی بۆ ناو کلیپ بۆرد."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "دروستکردنی تێپەڕە وشە"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "دروستکردن"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "گۆڕینی تێپەڕە وشە"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "زیاتر"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "هەمووی پێشاندە"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Hide indexes"
msgid "Hide Panel"
msgstr "شاردنەوەی نیشاندەرەکان"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show indexes"
msgid "Show hidden navigation tree items."
msgstr "پێشاندانی نیشاندەرەکان"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Hide indexes"
msgid "Link with main panel"
msgstr "شاردنەوەی نیشاندەرەکان"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Hide indexes"
msgid "Unlink from main panel"
msgstr "شاردنەوەی نیشاندەرەکان"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "خشتەکان"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "نیشاندان"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Processes"
msgid "procedures"
msgstr "پڕۆسەکان"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Events"
msgid "events"
msgstr "چالاکیەکان"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Function"
msgid "functions"
msgstr "فرمان"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2464,28 +2507,28 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr "، دوایین وەشانی جێگیر:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "نوێترینە"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "ناردنی ڕاپۆرتی هەڵە"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "ناردنی ڕاپۆرتی هەڵە"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2493,442 +2536,442 @@ msgstr ""
"هەڵەیەکی گەورەی JavaScript هاتە پێش، دەتەوێت لە ڕوودانی ئەو هەڵەیە "
"ئاگادارمان بکەیتەوە؟"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "گۆڕینی ڕێکخستنەکانی ڕاپۆرت"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "وردە زانیارییەکانی ڕاپۆرت"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "تکایە چاو لە بەشی خوارەوەی ئەم پەنجەرە بکە."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "لە بیرکردنی هەموو"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "ئایا دڵنیایت کە دەتەوێت ئەو Bookmark ـە بسڕیتەوە؟"
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "تێبینیەکانی خشتە"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "شاردنەوەی ئەنجامەکانی گەڕان"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "پێشتر"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "دواتر"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "ئەمڕۆ"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "کانونی دووەم"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "شوبات"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "مارت"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "نیسان"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "مایس"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "حوزەیران"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "تەموز"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "ئاب"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "ئەیلول"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "تشرینی یەکەم"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "تشرینی دووەم"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "کانونی یەکەم"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "کانوونی دووەم"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "شوبات"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "مارت"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "نیسان"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "مایس"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "حوزیران"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "تەموز"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "ئاب"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "ئەیلول"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "تشرینی یەکەم"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "تشرینی دووەم"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "کانوونی یەکەم"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "یەک شەم"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "دوو شەم"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "سێ شەم"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "چوار شەم"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "پێنج شەم"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "هەینی"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "شەممە"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "یەک شەم"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "دوو شەم"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "سێ شەم"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "چوار شەم"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "پێنج شەم"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "هەینی"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "شەممە"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "یەک شەم"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "دوو شەم"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "سێ شەم"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "چوار شەم"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "پێنج شەم"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "هەینی"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "شەممە"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "هەفتە"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "ڕۆژژمێر-مانگ-ساڵ"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "هیچ"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "كاتژمێر"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "خولەک"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "چرکە"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid email address"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid URL"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date ( ISO )"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid number"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid credit card number"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter only digits"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter the same value again"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter at least {0} characters"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value between {0} and {1}"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value less than or equal to {0}"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value greater than or equal to {0}"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date or time"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid HEX input"
msgstr "%d ژمارەی ڕیزی نادروستە."
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2999,16 +3042,16 @@ msgstr "لە کاتژمێرێکدا"
msgid "per day"
msgstr "لە ڕؤژێکدا"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "قەبارەی فۆنت"
@@ -3029,7 +3072,7 @@ msgid "Requery"
msgstr "داواکاری"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3244,7 +3287,7 @@ msgid "Count:"
msgstr "ستون"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3451,25 +3494,25 @@ msgstr "پیشاندانی شوێندۆز"
msgid "Delete bookmark"
msgstr "گەڕانی خشتە"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3544,6 +3587,16 @@ msgstr "وشەکان بە هێمای بۆشایی جیا دەکرێنەوە (\"
msgid "Inside tables:"
msgstr "لەناو خشتە:\n"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "هەڵبژاردنی هەموو"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "هەلنەبژاردنی هەموو"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "لە نێو خشتەی:"
@@ -3601,7 +3654,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3908,7 +3961,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "سێرڤەر"
@@ -3919,34 +3972,13 @@ msgstr "سێرڤەر"
msgid "View"
msgstr "نیشاندان"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "پێکهاتە"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "سیكوێڵ"
@@ -4043,8 +4075,8 @@ msgstr "ستونەکان زیادبکە"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "بنکە زانیاریەکان"
@@ -4159,7 +4191,7 @@ msgid "Recent"
msgstr "خشتە تازەکان"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4234,16 +4266,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4757,7 +4779,7 @@ msgstr ""
msgid "MySQL said: "
msgstr "مایئێسكیوئێڵ دەڵێت: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "ڕوونکردنەوەی سیكوێڵ"
@@ -4774,7 +4796,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "بەبێ پی ئێچ پی کۆد"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "پی ئێچ پی کۆد دروست بکە"
@@ -4891,17 +4913,6 @@ msgstr "ئەم نرخە هەڵبژێرە"
msgid "Rows"
msgstr "خانە"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5072,7 +5083,7 @@ msgstr "سێرڤەر"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5080,24 +5091,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5331,7 +5342,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5730,7 +5741,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5739,7 +5750,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5766,15 +5777,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5790,14 +5801,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5867,7 +5878,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5884,8 +5895,8 @@ msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە"
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6000,17 +6011,17 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Query results operations"
msgid "Customize default options."
msgstr "کردارەکانی ئەنجامی داواکاری"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -6038,7 +6049,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6085,351 +6096,363 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Table comments"
+msgid "Navigation tree"
+msgstr "تێبینیەکانی خشتە"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Customize the navigation tree."
+msgstr "پێشاندانی نیشاندەرەکان"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Table comments"
msgid "Tables display options."
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Hide indexes"
msgid "Main panel"
msgstr "شاردنەوەی نیشاندەرەکان"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Current settings"
msgid "Authentication settings."
msgstr "ڕێکخستنەکانی هەنووکە"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Server connection collation"
msgid "Enter server connection parameters."
msgstr "ڕێکخستنی پەیوەندی ڕاژەکار"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "Current settings"
msgid "SQL queries settings."
msgstr "ڕێکخستنەکانی هەنووکە"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6437,1085 +6460,1141 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show indexes"
msgid "Show databases navigation as tree"
msgstr "پێشاندانی نیشاندەرەکان"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Table comments"
msgid "Show logo in navigation panel."
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table comments"
msgid "Enable navigation tree expansion"
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Showing rows"
+msgid "Show tables in tree"
+msgstr "ڕیزە پێشاندراوەکان"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr ""
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "پێشاندانی نیشاندەرەکان"
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr ""
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Show views in tree"
+msgstr "پێشاندانی نیشاندەرەکان"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr ""
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "پێشاندانی نیشاندەرەکان"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Connections since last refresh"
+msgid "Show functions in tree"
+msgstr "بەستنەکان لەدوای کۆتایین تازەکردنەوە"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
-msgstr ""
+#, fuzzy
+#| msgid "Processes"
+msgid "Show procedures in tree"
+msgstr "پڕۆسەکان"
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
#, fuzzy
+#| msgid "Show indexes"
+msgid "Show events in tree"
+msgstr "پێشاندانی نیشاندەرەکان"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "پێشاندانی نیشاندەرەکان"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "No data found"
msgid "Relational display"
msgstr "هیچ زانیاریەک نەدۆزراوە"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection"
msgid "Compress connection to MySQL server."
msgstr "پەستانی پەیوەندی"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "پەستانی پەیوەندی"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "جۆری پەیوەندی"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "شاردنەوەى بنکەی دراو"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "چوونەدەرەوە بەستەر"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add columns"
msgid "Central columns table"
msgstr "ستونەکان زیادبکە"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Connect without password"
msgid "Try to connect without password."
msgstr "پەیوەندی بەبێ وشەی نهێنی"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "پەیوەندی بەبێ وشەی نهێنی"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "تەنها نیشاندانی لیستی بنکەی دراو"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "ناوی بنکەی دراو"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "گۆڕاوەکان"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "بەکارهێنانی SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "خشتە بەکار ببە"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "تێبینیەکانی خشتە"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "نیشاندانی پرسگەی SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "نیشاندانی سەرژمێری"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "سەردێری بنەڕەت"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7523,52 +7602,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "بەکارهێنانی گەڕان لە بنکەی دراو"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "پشکنین بۆ دۆزینەوەی نوێترین وەشان"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7576,84 +7655,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "ناوی بەکارهێنەر"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "وشەی نهێنی"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -7679,44 +7758,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "خێرا"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "ڕاسپێراو"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -7747,7 +7826,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -7818,7 +7897,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7861,62 +7940,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7924,74 +8003,84 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Enter each value in a separate field."
+msgid "Export tables as separate files"
+msgstr "هەر نرخێک لە خانەی جیا بنووسە."
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "هەڵبژاردنی هەموو"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "هەڵبژاردنی هەموو"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "ناوی بنکەی دراو"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "Invalid table name"
msgid "New table name"
msgstr "ناوی خشتەی نادروست"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "لەبەرگرتنەوەی ناوی ستون"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -8551,7 +8640,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8687,11 +8776,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Replace table prefix"
@@ -8907,29 +8991,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Username"
+msgid "Groups:"
+msgstr "ناوی بەکارهێنەر"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "چالاکیەکان"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Function"
msgid "Functions:"
msgstr "فرمان"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Processes"
msgid "Procedures:"
msgstr "پڕۆسەکان"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Table"
msgid "Tables:"
msgstr "خشتە"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -8959,37 +9049,37 @@ msgstr "تێبینیەکانی خشتە"
msgid "Reload navigation panel"
msgstr "تێبینیەکانی خشتە"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Database name"
msgid "Filter databases by name or regex"
msgstr "ناوی بنکەی دراو"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Filter queries by word/regexp:"
msgid "Filter by name or regex"
msgstr "پاڵاوتنی داواکاریەکان بە word/regexp:"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9025,7 +9115,7 @@ msgstr ""
msgid "Database operations"
msgstr "وەشانی ڕاژەخوازی بنکەی دراوە"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show indexes"
msgid "Show hidden items"
@@ -10218,26 +10308,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10579,59 +10669,59 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "ناتوانیت پەڕگە بخوێنیتەوە"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "The row has been deleted."
msgid "Internal relation has been added."
msgstr "ڕیزەکە سڕایەوە"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "ناتوانیت پەڕگە بخوێنیتەوە"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "The row has been deleted."
msgid "FOREIGN KEY relation has been removed."
msgstr "ڕیزەکە سڕایەوە"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "ناتوانیت پەڕگە بخوێنیتەوە"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "ناتوانیت پەڕگە بخوێنیتەوە"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "The row has been deleted."
msgid "Internal relation has been removed."
@@ -10720,54 +10810,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11494,7 +11588,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current settings"
msgid "Current Server:"
@@ -16098,9 +16192,6 @@ msgstr "نرخی concurrent_insert ڕێکخراوە بۆ 0"
#~ msgid "Server traffic (in KiB)"
#~ msgstr "هاتووچوی سێرڤەر (بە کیلۆ بایت)"
-#~ msgid "Connections since last refresh"
-#~ msgstr "بەستنەکان لەدوای کۆتایین تازەکردنەوە"
-
#~ msgid "Questions since last refresh"
#~ msgstr "پرسیارەکان لەدوای کۆتایین تازەکردنەوە"
diff --git a/po/cs.po b/po/cs.po
index 7749f13873..18fc9ec608 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-05-14 15:44+0200\n"
"Last-Translator: Michal Čihař
- Control+Kliknutí nebo Alt+Kliknutí(MAC: Shift+Option+Kliknutí) "
"sloupec odstraní z ORDER BY podmínky"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Klikněte pro označení."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Poklepejte pro zkopírování jména pole."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Klikněte na šipku
pro vybrání sloupců."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Zobrazit vše"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2316,12 +2359,12 @@ msgstr ""
"editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání "
"fungovat."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Prosím zadejte platný šestnáctkový řetězec. Můžete použít znaky 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2329,132 +2372,132 @@ msgstr ""
"Opravdu si přejete zobrazit všechny řádky? U velké tabulky by mohlo dojít ke "
"spadnutí prohlížeče."
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "Původní řetězec"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "zrušit"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Přerušené"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Úspěch"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Stav importu"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Přetáhněte sem soubory"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Nejdříve zvolte databázi"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "Většinu polí můžete přímo upravit
dvojklikem na jejich obsah."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "Většinu polí můžete přímo upravit
kliknutím na jejich obsah."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Přejít na odkaz:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Zkopírovat název pole."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Klikněte pravým tlačítkem myši pro zkopírování názvu pole do schránky."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Vytvořit heslo"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Vytvořit"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Změnit heslo"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Více"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Zobrazit panel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Skrýt panel"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Zobrazit skryté položky navigačního panelu."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Spojit s hlavním panelem"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Odpojit od hlavního panelu"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Pro filtrování všemi databázemi na serveru zmáčkněte Enter po zadání "
"hledaného názvu"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Pro filtrování všech %s v databázi zmáčkněte Enter po zadání hledaného názvu"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "tabulky"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "pohledy"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "procedury"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "události"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "funkce"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"Požadovaná stránka nebyla nalezena v historii, možná jí již vypršela "
"platnost."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2464,49 +2507,49 @@ msgstr ""
"je %s a byla vydána %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", poslední stabilní verze:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "aktuální"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Vytvořit pohled"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Odeslat chybové hlášení"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Odeslat chybové hlášení"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
"Došlo k chybě při běhu Javascriptu. Přejete si odeslat chybové hlášení?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Změnit nastavení hlášení"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Zobrazit podrobnosti hlášení"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr "Váš export není kompletní kvůli omezené době běhu PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2515,63 +2558,63 @@ msgstr ""
"Varování: Formulář na této stránce má více než %d polí. Při jeho odeslání "
"mohou být kvůli nastavení PHP max_input_vars některá z nich ignorována."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Na serveru došlo byly zjištěny chyby!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Prosím podívejte se na spodní část okna."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignorovat vše"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr "Podle vašeho nastavení jsou právě odesílány, prosím buďte trpěliví."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Spustit tento dotaz znovu?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Opravdu si přejete odstranit tuto záložku?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Enter executes queries in console"
msgid "%s queries executed %s times in %s seconds."
msgstr "Enter spustí dotazy v konzoli"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Komentář k tabulce"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Skrýt výsledky vyhledávání"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2581,363 +2624,363 @@ msgstr ""
"maximálního limitu, některé funkce tudíž nemusí fungovat správně. V Safari "
"je tento problém běžně zapříčiněn v režimu \"Soukromého prohlížení\"."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Předchozí"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Následující"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Dnešek"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "leden"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "únor"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "březen"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "duben"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "květen"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "červen"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "červenec"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "srpen"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "září"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "říjen"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "listopad"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "prosinec"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "led"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "úno"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "bře"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "dub"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "kvě"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "čen"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "čec"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "srp"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "zář"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "říj"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "lis"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "pro"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Neděle"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Pondělí"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Úterý"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Středa"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Čtvrtek"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Pátek"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Úte"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Stř"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Čtv"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pát"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Čt"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Pá"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Týd"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minuty"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekundy"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Použít textové pole"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid email address"
msgstr "Prosím zadejte platný název stránky"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "Prosím zadejte platné číslo!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date"
msgstr "Prosím zadejte platný název stránky"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date ( ISO )"
msgstr "Prosím zadejte platný název stránky"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "Prosím zadejte platné číslo!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "Prosím zadejte platné číslo!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "Prosím zadejte platnou délku!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter the same value again"
msgstr "Prosím zadejte platný název stránky"
-#: js/messages.php:776
+#: js/messages.php:777
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter no more than {0} characters"
msgstr "Zadejte, prosím, správný kód!"
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter at least {0} characters"
msgstr "Zadejte, prosím, správný kód!"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value between {0} and {1}"
msgstr "Prosím zadejte platný název stránky"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Prosím zadejte platnou délku!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Prosím zadejte platný název stránky"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date or time"
msgstr "Prosím zadejte platný název stránky"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Prosím zadejte platné číslo!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3011,18 +3054,18 @@ msgstr "za hodinu"
msgid "per day"
msgstr "za den"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Nepodařilo se přečíst existující konfigurační soubor (%s)."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný "
"pro všechny!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Velikost písma"
@@ -3041,7 +3084,7 @@ msgid "Requery"
msgstr "Znovu"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3240,7 +3283,7 @@ msgid "Count:"
msgstr "Počet"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3415,27 +3458,27 @@ msgstr "Upravit uložené vyhledávání"
msgid "Delete bookmark"
msgstr "Odstranit uložené vyhledávání"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Server neodpovídá."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
"Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Podrobnosti…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních."
@@ -3512,6 +3555,16 @@ msgstr "Slova jsou oddělena mezerou („ “)."
msgid "Inside tables:"
msgstr "V tabulkách:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Vybrat vše"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Odznačit vše"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Uvnitř pole:"
@@ -3565,7 +3618,7 @@ msgid "All"
msgstr "Všechno"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Počet řádků:"
@@ -3864,7 +3917,7 @@ msgstr ""
"odstraněn."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3875,34 +3928,13 @@ msgstr "Server"
msgid "View"
msgstr "Pohled"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3997,8 +4029,8 @@ msgstr "Centrální sloupce"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Databáze"
@@ -4104,7 +4136,7 @@ msgid "Recent"
msgstr "Nedávné"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Oblíbené tabulky"
@@ -4173,16 +4205,6 @@ msgstr "Použité výběry"
msgid "Sorting"
msgstr "Řazení"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabulky"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Koordinátor transakcí"
@@ -4735,7 +4757,7 @@ msgstr "Maximální velikost: %s%s"
msgid "MySQL said: "
msgstr "MySQL hlásí: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Vysvětlit SQL"
@@ -4752,7 +4774,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Bez PHP kódu"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Vytvořit PHP kód"
@@ -4865,17 +4887,6 @@ msgstr "Použít tuto hodnotu"
msgid "Rows"
msgstr "Řádků"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5037,7 +5048,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "V nastavení máte špatnou přihlašovací metodu:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5048,24 +5059,24 @@ msgstr ""
"nastavení pro [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. phpMyAdmin "
"momentálně používá výchozí časové pásmo databázového serveru."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Chyba: neplatný token"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "Pokus o přepsání GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "možný pokus o exploit"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "detekován číselný klíč"
@@ -5293,7 +5304,7 @@ msgid "Set value: %s"
msgstr "Nastavena hodnota: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Obnovit výchozí hodnotu"
@@ -5755,7 +5766,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Časový limit běhu skriptu"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "Použi %s příkaz"
@@ -5764,7 +5775,7 @@ msgstr "Použi %s příkaz"
msgid "Save as file"
msgstr "Uložit jako soubor"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Znaková sada souboru"
@@ -5791,15 +5802,15 @@ msgstr "Komprese"
msgid "Put columns names in the first row"
msgstr "Přidat jména polí na první řádek"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Pole uzavřené do"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Pole escapována"
@@ -5815,14 +5826,14 @@ msgstr "Nahradit NULL hodnoty"
msgid "Remove CRLF characters within columns"
msgstr "Odstranit znaky konců řádek z polí"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Pole oddělené"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Řádky ukončené"
@@ -5892,7 +5903,7 @@ msgid "Save on server"
msgstr "Uložit na server"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Přepsat existující soubory"
@@ -5909,8 +5920,8 @@ msgstr "Přidat hodnotu AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Použít zpětné uvozovky u jmen tabulek a polí"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Režim kompatibility SQL"
@@ -6030,15 +6041,15 @@ msgid "Customize browse mode."
msgstr "Přizpůsobí režim prohlížení."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Přizpůsobí výchozí nastavení."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6066,7 +6077,7 @@ msgstr "Výchozí nastavení exportu"
msgid "Customize default export options."
msgstr "Přizpůsobí výchozí nastavení exportu."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Funkce"
@@ -6111,40 +6122,52 @@ msgstr "Navigační panel"
msgid "Customize appearance of the navigation panel."
msgstr "Přizpůsobí vzhled navigačního panelu."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigační panel"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Přizpůsobení navigačního panelu"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servery"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Nastavení zobrazení serverů."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Nastavení zobrazení tabulek."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Hlavní panel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Jiná důležitá nastavení"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Nastavení, která nelze zařadit jinam."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Jména stránek"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6152,11 +6175,11 @@ msgstr ""
"Zadejte titulek který zobrazí prohlížeč. V [doc@faq6-27]dokumentaci[/doc] "
"naleznete jaké proměnné můžete použít."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Zabezpečení"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6164,23 +6187,23 @@ msgstr ""
"Prosíme uvědomte si, že phpMyAdmin je pouze uživatelské rozhraní a jeho "
"funkce neomezují MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Základní nastavení"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Přihlašování"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Nastavení přihlašování."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Nastavení serveru"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6188,15 +6211,15 @@ msgstr ""
"Pokročilé nastavení serveru, neměňte tyto volby, pokud nevíte, čeho se "
"týkají."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Vložte parametry připojení k serveru."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Úložiště nastavení"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6206,11 +6229,11 @@ msgstr ""
"dodatečným funkcím, viz sekce [doc@linked-tables]úložiště nastavení "
"phpMyAdmina[/doc] v dokumentaci."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Sledování změn"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6218,111 +6241,111 @@ msgstr ""
"Sledování změn provedených v databazí. Vyžaduje nastavené úložiště nastavení "
"phpMyAdmina."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Přizpůsobení exportu"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Přizpůsobení výchozího nastavení importu"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Přizpůsobení navigačního panelu"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Přizpůsobení hlavního panelu"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL dotazy"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Políčko pro SQL dotazy"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Přizpůsobení odkazů zobrazených v políčcích pro SQL dotazy."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Nastavení SQL dotazů."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Úvodní stránka"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Přizpůsobení úvodní stránky."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Struktura databáze"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Zvolte co se má zobrazit při zobrazení struktury databáze (seznam tabulek)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Struktura tabulky"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
"Zvolte co se má zobrazit při zobrazení struktury tabulky (seznam polí)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Panely"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Nastaví, jak mají fungovat panely."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Zobrazit relační schéma"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Velikost stránky"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Textová pole"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Přizpůsobení textových polí."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! text"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Přizpůsobí výchozí nastavení"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Varování"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Vypnout některá varování zobrazovaná phpMyAdminem."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6330,15 +6353,15 @@ msgstr ""
"Povolí [a@http://cs.wikipedia.org/wiki/Gzip]gzip[/a] kompresi pro "
"importování a exportování."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Další parametry pro iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6346,11 +6369,11 @@ msgstr ""
"Pokud je povoleno, PMA pokračuje ve zpracování víceprvkových dotazů, i když "
"jeden z nich selhal."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignorovat chyby ve víceprvkových dotazech"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6360,25 +6383,25 @@ msgstr ""
"časového limitu. Tento způsob může být vhodný pro import velkých souborů, "
"ovšem může poškodit transakce."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Častečný import: povolit přerušení"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Nepřerušit při chybě v příkazu INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6386,67 +6409,67 @@ msgstr ""
"Výchozí formát; uvědomte si, že toto závisí na umístění (databáze, tabulka) "
"a pouze SQL je vždy dostupný."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Formát importovaného souboru"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Použít klíčové slovo LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Jména polí na prvním řádku"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Neimportovat prázdné řádky"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importovat měny (5.00 místo $5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importovat procenta jako desetinná čísla (0.12 místo 12.00%)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Počet dotazů od začátku, které se mají přeskočit."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Částečný import: přeskočit dotazy"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Počáteční stav pro rozbalovací pole"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Kolik řádků může být vloženo naráz."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Počet vkládaných řádků"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr "Nejvyšší počet znaků zobrazeních v nečíselných polích při procházení."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Omezení počtu znaků"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6457,11 +6480,11 @@ msgstr ""
"Zakázání může způsobit, že se zapomenete odhlásit od ostatních serverů, "
"pokud jich používáte více."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Smazat všechny cookies při odhlášení"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6469,11 +6492,11 @@ msgstr ""
"Určuje, zda se má pamatovat předchozí přihlášení, při použití přihlašování "
"pomocí [kbd]cookie[/kbd]."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Pamatovat si uživatelské jméno"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6485,48 +6508,48 @@ msgstr ""
"sezení, čili, že bude smazána v okamžiku, kdy zavřete okno prohlížeče. Tato "
"volba je doporučena pro nedůvěryhodná prostředí."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Uložení přihlašovací cookie"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Určuje, jak dlouho (v sekundách) je přihlašovací cookie platná."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Platnost přihlašovací cookie"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Zdvojnásobit velikost editačního pole pro sloupec typu LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Větší editační pole pro LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Nejvyšší počet znaků SQL dotazu, které se ještě zobrazí."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Nejvyšší délka zobrazeného SQL dotazu"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Uživatelé nemohou nastavit větší hodnotu"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Nejvyšší počet databází zobrazených v seznamu databází."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Nejvyšší počet databází"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6534,22 +6557,22 @@ msgstr ""
"Počet položek, které se mají zobrazit na každé stránce první úrovně "
"navigačního stromu."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Nejvyšší počet položek na první úrovni"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
"Počet položek, které se mají zobrazit na každé stránce navigačního stromu."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Nejvyšší počet položek ve větvi"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6557,19 +6580,19 @@ msgstr ""
"Počet řádků, které se zobrazí při procházení množiny výsledků. Pokud je "
"množina výsledků delší, zobrazí se odkazy „Předchozí“ a „Další“."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Nejvyšší počet zobrazených řádků"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Nejvyšší počet zobrazených tabulek"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6577,41 +6600,41 @@ msgstr ""
"Počet bytů, které si může skript alokovat, např. [kbd]32M[/kbd] ([kbd]0[/"
"kbd] ruší omezení)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Omezení paměti"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"V navigačním panelu nahradit databázové rozbalovacím menu pomocí stromu"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Zobrazit databázovou navigaci jako strom"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Propojení s hlavním panelem pomocí zvýraznění aktuální databáze nebo tabulky."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Zobrazit logo v navigačním panelu."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Zobrazit logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL na které bude odkazovat logo v navigačním panelu."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL odkazu loga"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6619,27 +6642,27 @@ msgstr ""
"Zda se má odkazovaná stránka otevřít v hlavním okně ([kbd]hlavní[/kbd]) nebo "
"v novém ([kbd]nové[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Cíl odkazu loga"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Zobrazí volbu serveru v horní části navigačního panelu."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Zobrazit výběr serverů"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Cíl pro ikonu rychlého přístupu"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Cíl po kliknutí na druhou ikonku rychlého přístupu"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6647,15 +6670,15 @@ msgstr ""
"Definuje minimální počet položek (tabulky, pohledy, procedury a události) "
"pro zobrazení filtrovacího pole."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Minimální počet položek pro zobrazení filtrovacího pole"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Minimální počet tabulek pro zobrazení filtru databází"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6666,103 +6689,161 @@ msgid ""
msgstr ""
"Seskupovat položky v navigačním stromu (určeno oddělovačem nastaveným níže)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Seskupovat položky ve stromu"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Řetězec, který rozděluje databáze do různých pater stromu."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Oddělovač databázového stromu"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Řetězec, který rozděluje tabulky do různých pater stromu."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Oddělovač tabulkovýho stromu"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Nejvyšší počet pater tabulkového stromu"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Zvýrazní server pod kurzorem myši."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Povolit zvýrazňování"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr "Nabídnout možnost rozbalení stromu v navigačním panelu."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Umožnit rozbalení navigačního stromu"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Zobrazit/Skrýt seznam tabulek"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Nabídnout možnost rozbalení stromu v navigačním panelu."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Zobrazit verze"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Zobrazit databázovou navigaci jako strom"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Zobrazit seznam fukncí"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Zobrazit procesy"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Zobrazit verze"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Zobrazit databázovou navigaci jako strom"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Nejvyšší počet tabulek v seznamu nedávných tabulek; nastavte 0 pro vypnutí."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
"Nejvyšší počet tabulek v seznamu oblíbených tabulek; nastavte 0 pro vypnutí."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Nedávno použité tabulky"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Jedná se o odkazy Upravit, Kopírovat a Odstranit."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Kde zobrazit odkazy s akcemi při procházení"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "Použít přirozené řazení pro jména tabulek a databází."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Přirozené pořadí"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Zda se mají zobrazit pouze ikony, nebo pouze text, případně obojí."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Lišta při procházení tabulky"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Použít vyrovnávací paměť výstupu GZip pro zrychlení přenosů HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Mezipaměť pro GZip výstup"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6770,19 +6851,19 @@ msgstr ""
"[kbd]SMART[/kbd] - t.j. řazení sestupně pro pole typu TIME, DATE, DATETIME a "
"TIMESTAMP, v ostatních případech se použije vzestupné řazení."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Výchozí pořadí řazení"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Používat trvalé připojení k databázím MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Trvalé připojení"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6791,11 +6872,11 @@ msgstr ""
"Vypne varování o nekompletních relacích na stránce s detaily databáze pokud "
"chybí jakákoliv tabulka z úložiště nastavení phpMyAdmina."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6803,11 +6884,11 @@ msgstr ""
"Vypne varování, která se zobrazí, pokud je zjištěna rozdílná verze knihovny "
"MySQL a serveru."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Varování o rozdílných verzích"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6815,27 +6896,27 @@ msgstr ""
"Vypne varování o použití klíčového slova MySQL v názvu sloupce na stránce se "
"strukturou tabulky."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Varování o klíčových slovech MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Jak zobrazit panely nabídky"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Jak zobrazit akční odkazy"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Zakáže úpravu polí BLOB a BINARY."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Chránit binární pole"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6846,104 +6927,104 @@ msgstr ""
"historie Java Scriptové rutiny (se zavřením okna ztratíte předchozí "
"historii)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Nepřetržitá historie dotazů"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Kolik dotazů se má držet v historii."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Délka historie dotazů"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "Vybere, které funkce budou použity pro konverzi znakových sad."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Nástroje pro konverzi znakových sad"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Při procházení tabulek se pro každou uloží nastavené řazení."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Pamatovat si řazení u tabulkek"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Výchozí způsob řazení pro tabulky s primárním klíčem."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Výchozí způsob řazení primárního klíče"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Zopakovat záhlaví každých X buněk, [kbd]0[/kbd] vypne tuto funknci."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Opakovat záhlaví"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Úpravy v mřížce: činnost pro spuštění"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Relační zobrazení"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Pro zobrazení Nastavení"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Úpravy v mřížce: Uložit všechny upravené buňky najednou"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Adresář na serveru pro ukládání exportů."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Adresář pro ukládání"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Pokud tuto volbu nepoužíváte, nechte ji prázdnou."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Pořadí ověřování hostitelů"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Nechte volbu prázdnou pro výchozí nastavení."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Pravidla ověřování hostitelů"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Povolit přihlášení bez hesla"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Povolit přihlašování uživatele root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Časová zóna relace"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6951,15 +7032,15 @@ msgstr ""
"Nastaví efektivní časovou zónu; pravděpodobně odlišnou od nastavení vašeho "
"databázového serveru"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "Název pro zobrazení při HTTP přihlašování."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP doméma"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6969,19 +7050,19 @@ msgstr ""
"přihlašování SweKey[/a] (Není umístěna ve Vašem kořenovém adresáři "
"dokumentů; Doporučení: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "Konfigurační soubor SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Která přihlašovací metoda se má použít."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Typ přihlašování"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6989,11 +7070,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]záložek[/a], doporučené nastavení: [kbd]pma__bookmarks[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Tabulka záložek"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7001,32 +7082,32 @@ msgstr ""
"Nechte prázdné pro žádné komentáře či mime typy polí, výchozí nastavení: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Tabulka informací o polích"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Zda se má komprimovat připojení k MySQL serveru."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Komprimovat připojení"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Způsob připojení k serveru, pokud si nejste jistí ponechte [kbd]tcp[/kbd]."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Typ připojení"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Heslo kontrolního uživatele"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7034,21 +7115,21 @@ msgstr ""
"Zvláštní MySQL uživatel s omezenými právy, více informací na [a@http://wiki."
"phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Kontrolní uživatel"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr "Jiný server na kterém bude umístěno úložiště nastavení phpMyAdmina."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Kontrolní host"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7058,15 +7139,15 @@ msgstr ""
"nastavení phpMyAdmina; ponechte prázdné pro použití výchozího portu, nebo "
"již nastaveného, pokud je nastaven stejný server jako pro připojení."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Kontrolní port"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Skrýt databáze odpovídající regulárnímu výrazu (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7074,15 +7155,15 @@ msgstr ""
"Více informací v [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug "
"trackeru[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Zakázat použití INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Skrýt databáze"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7090,23 +7171,23 @@ msgstr ""
"Nechte prázdné pro vypnutí SQL historie, výchozí hodnota [kbd]pma__history[/"
"kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Tabulka pro historii SQL dotazů"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Jméno počítače, kde běží MySQL server."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Jméno serveru"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL pro odhlášení"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7114,15 +7195,15 @@ msgstr ""
"Omezí počet nastavení prohlížení tabulek, která budou uložena v databázi, "
"nejstarší záznamy jsou automaticky odstraněny."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Nejvyšší počet uložených nastavení tabulek"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Tabulka s uloženými dotazy"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7130,11 +7211,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro ukládání dotazů, doporučené "
"nastavení: [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Centrální sloupcová tabulka"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7142,15 +7223,15 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory centrálních sloupců, například: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Pokusit se připojit bez hesla."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Připojit bez hesla"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7159,30 +7240,30 @@ msgstr ""
"Můžete použít žolíky MySQL (% a _), escapujte je, pokud si je přejete použít "
"jako znaky, např. použijte [kbd]'moje\\_db'[/kbd] a ne [kbd]'moje_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Zobrazit jen vybrané databáze"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Nechte prázdné, pokud nepoužíváte přihlašování config."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Heslo pro přihlašování config"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Nechte prázdné pro vypnutí podpory pro PDF schémata, doporučené nastavení: "
"[kbd]pma__table_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF schémata: tabulka stránek"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7193,21 +7274,21 @@ msgstr ""
"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Jméno databáze"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Port na kterém poslouchá MySQL server, ponechte prázdné pro výchozí hodnotu."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Port serveru"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7215,11 +7296,11 @@ msgstr ""
"Nechte prázdné pro vypnutí „trvalého“ ukládání nedávných tabulek, výchozí "
"nastavení: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Naposledy použité tabulky"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7231,11 +7312,11 @@ msgstr ""
"Nechte prázdné pro vypnutí „trvalého“ ukládání nedávných tabulek, výchozí "
"nastavení: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Oblíbené tabulky"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7243,11 +7324,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/"
"relation]relace[/a], doporučené nastavení: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Tabulka s relacemi"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7255,33 +7336,33 @@ msgstr ""
"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types[/a]."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Jméno signon session"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "URL pro přihlášení"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Socket na kterém poslouchá MySQL server, ponechte prázdné pro výchozí "
"hodnotu."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Socket serveru"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Zda se má použít SSL pro připojení k MySQL serveru."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Použít SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7289,11 +7370,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro PDF schémata, doporučené nastavení: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Designér a PDF schéma: tabulka souřadnic"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7301,11 +7382,11 @@ msgstr ""
"Tabulka obsahující popisy polí, nechte prázdnou pro vypnutí této funkce, "
"doporučené nastavení: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Tabulka s popisem polí"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7313,11 +7394,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro „trvalé“ ukládání nastavení "
"procházení tabulek, doporučené nastavení: [kbd]pma__uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Tabulka pro nastavení rozhraní"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7325,43 +7406,43 @@ msgstr ""
"Jestli přidat příkaz DROP DATABASE IF EXISTS jako první při vytváření "
"databáze."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Přidat DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
"Jestli přidat příkaz DROP TABLE IF EXISTS jako první při vytváření tabulky."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Přidat DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
"Jestli přidat příkaz DROP VIEW IF EXISTS jako první při vytváření pohledu."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Přidat DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Určuje seznam příkazů které se automaticky používají pro vytvoření nových "
"verzí."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Sledované příkazy"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7369,22 +7450,22 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, doporučené "
"nastavení: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Tabulka pro sledování SQL dotazů"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Jestli má sledování tabulek automaticky vytvářet verze pro tabulky a pohledy."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Automaticky vytvářet verze"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7392,11 +7473,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, "
"doporučené nastavení: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Tabulka pro uživatelská nastavení"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7406,11 +7487,11 @@ msgstr ""
"uživatelů. Pokud libovolnou z nich nevyplníte, bude tato funkcionalita "
"vypnutá. Doporučené nastavení: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Tabulka uživatelů"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7420,11 +7501,11 @@ msgstr ""
"uživatelských nastavení. Pokud libovolnou z nich nevyplníte, bude tato "
"funkcionalita vypnutá. Doporučené nastavení: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Tabulka skupin uživatelů"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7432,34 +7513,34 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro schovávání navigačních položek, "
"doporučené nastavení: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Tabulka skrývání navigace"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Uživatel pro přihlašování config"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
"Přívětivý popis tohoto serveru. Pokud necháte prázdné, zobrazí se jeho jméno."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Dlouhé jméno tohoto serveru"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Jestli bude uživateli zobrazeno tlačítko „Zobrazit vše“."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Umožní zobrazit všechny řádky"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7470,15 +7551,15 @@ msgstr ""
"neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení "
"formuláře."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Zobrazit formulář pro změnu hesla"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Zobrazit formulář pro vytvoření databáze"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7486,71 +7567,71 @@ msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Zobrazit nebo skrýt sloupec zobrazující čas vytvoření pro všechny tabulky."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentář k tabulce"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Zobrazit nebo skrýt sloupec zobrazující čas vytvoření pro všechny tabulky."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Zobrazit čas vytvoření"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Zobrazit nebo skrýt sloupec zobrazující čas poslední změny pro všechny "
"tabulky."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Zobrazit čas poslední změny"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Zobrazit nebo skrýt sloupec zobrazující čas poslední kontroly pro všechny "
"tabulky."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Zobrazit čas poslední kontroly"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
"Určuje, jestli mají být zobrazeny typy polí při úpravě a vkládání záznamů."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Zobrazit typy polí"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Zobrazí seznam funkcí v editačním režimu."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Zobrazit seznam fukncí"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Zda zobrazit nápovědu nebo ne."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Zobrazit nápovědu"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7558,53 +7639,53 @@ msgstr ""
"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Zobrazit odkaz na phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Zobrazí podrobné informace o MySQL serveru"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Určuje, jestli SQL dotazy vytvořené phpMyAdminem budou zobrazeny."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Zobrazit SQL dotazy"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Určuje zda má pole pro zadání dotazu zůstat zobrazeno i po odeslání."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Zachovat pole pro dotaz"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Povolí zobrazení statistik (např. použití místa) pro databáze a tabulky."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Zobrazit statistiky"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Označit používané tabulky a tím umožnit zobrazení databází se zamčenými "
"tabulkami."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Přeskočit zamčené tabulky"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7612,11 +7693,11 @@ msgid ""
"detected."
msgstr "Vypne varování na hlavní stránce pokud se používá Suhosin."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Varování o Suhosinu"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7626,11 +7707,11 @@ msgstr ""
"hodnota PHP nastavení session.gc_maxlifetime menší než hodnota "
"'LoginCookieValidity'."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Varování o platnosti přihlašovací cookie"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7642,11 +7723,11 @@ msgstr ""
"Velikost editačního pole (počet sloupců), tato hodnota bude navýšena pro SQL "
"dotazy (*2) a pro dotazové okno (*1,25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Sloupců v textové oblasti"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7658,31 +7739,31 @@ msgstr ""
"Velikost editačního pole (počet řádek), tato hodnota bude navýšena pro SQL "
"dotazy (*2) a pro dotazové okno (*1,25)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Řádků v textové oblasti"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Titulek prohlížeče pokud je vybraná databáze."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Titulek prohlížeče pokud není nic vybráno."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Výchozí titulek"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Titulek prohlížeče pokud je vybraný server."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Titulek prohlížeče pokud je vybraná tabulka."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7694,27 +7775,27 @@ msgstr ""
"Forwarded-For) přicházející od proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Seznam důvěryhodných proxy pro ověření IP adresy"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Adresář na serveru, kam můžete nahrát souboru pro import."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Adresář pro nahrávání"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Povolit prohledávání přes celou databázi."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Použít prohledávání databáze"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7722,26 +7803,26 @@ msgstr ""
"Pokud je vypnuto, uživatelé nemůžou změnit žádná z níže uvedených nastavení, "
"bez ohledu na zaškrtávátko napravo."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Povolit záložku Pro vývojáře v nastaveních"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Zkontrolovat nejnovější verzi"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Povolí kontrolu poslední verze phpMyAdmina na hlavní stránce."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Kontrola verze"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7753,11 +7834,11 @@ msgstr ""
"potřebujete pokud na serveru, kde je nainstalován phpMyAdmin, nemá přímý "
"přístup k internetu. Formát je: \"hostname:portnumber\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Adresa proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7768,19 +7849,19 @@ msgstr ""
"základní ověřování. V současné době nejsou podporovány žádné další typy "
"ověřování."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Uživatel proxy"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Heslo pro přihlášení k serveru proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Heslo proxy"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7788,35 +7869,35 @@ msgstr ""
"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] "
"kompresi pro import a export."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Zadejte veřejný klíč pro službu reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Veřejný klíč reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Zadejte soukromý klíč pro službu reCaptcha."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Soukromý klíč reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Zvolte výchozí akci při odesílání hlášení o chybě."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Odeslat chybová hlášení"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7824,11 +7905,11 @@ msgstr ""
"Dotazy jsou spuštěny zmáčknutím klávesy Enter (místo Ctrl+Enter). Nové řádky "
"budou vloženy pomocí Shift+Enter."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Enter spustí dotazy v konzoli"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7836,7 +7917,7 @@ msgstr ""
"Povolí mód Automatické konfigurace, který vám dovolí nastavit phpMyAdmin "
"konfigurační úložiště tabulek automaticky."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Umožnit mód Automatické konfigurace"
@@ -7862,44 +7943,44 @@ msgstr "Přihlašování přes HTTP"
msgid "Signon authentication"
msgstr "Přihlašování signon"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV pomocí LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Sešit OpenDocument"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Rychlý"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Vlastní"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Nastavení exportu databází"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV pro MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Text OpenDocument"
@@ -7930,7 +8011,7 @@ msgstr ""
"Používáte rozšíření mysql, které je zastaralé. Prosím zvažte použití "
"rozšíření mysqli."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
"Nepodařilo se nahrát pluginy schémata, zkontrolujte prosím vaší instalaci!"
@@ -7996,7 +8077,7 @@ msgstr "Vytvořit tabulku"
msgid "Number of columns"
msgstr "Počet polí"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!"
@@ -8040,11 +8121,11 @@ msgstr "Tabulky:"
msgid "Format:"
msgstr "Formát:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Parametry pro výstupní formát:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8052,52 +8133,52 @@ msgstr ""
"Posuňte se níže pro nastavení vybraného formátu a ignorujte nastavení "
"ostatních."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Převod znakové sady:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Řádky:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Vypsat některé řádky"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Začít od řádku:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Všechny řádky"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Výstup:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Uložit na serveru v adresáři %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Šablona pro jméno souboru:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ bude nahrazen jménem server"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ bude nahrazen jménem databáze"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ bude nahrazen jménem tabulky"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8109,64 +8190,76 @@ msgstr ""
"následující nahrazení: %3$s. Jakýkoliv jiný text zůstane zachován beze "
"změny. Více podrobností je ve %4$sFAQ%5$s."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "použít i pro budoucí exporty"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Znaková sada souboru:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Komprese:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zazipováno"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "zagzipováno"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Zobrazit výstup jako text"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Exportovat pohledy jako tabulky"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Exportovat hlavičky tabulek"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Přejmenovat exportovanou databázi/tabulky/sloupce"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Uložit do souboru"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Přeskočit tabulky větší než"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Zvolte databázi"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Vybrat tabulku"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nové jméno databáze"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nové jméno tabulky"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Starý název sloupce"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nový název sloupce"
@@ -8782,7 +8875,7 @@ msgid "Create an index on %s columns"
msgstr "Vytvořit klíč na %s polích"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Skrýt"
@@ -8916,11 +9009,6 @@ msgstr "Z"
msgid "To"
msgstr "Na"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Provést"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Přidat tabulce předponu:"
@@ -9135,22 +9223,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Došlo k chybě při nahrávání zobrazení navigace"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Název skupiny:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Události:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funkce:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procedury:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tabulky:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Pohledy:"
@@ -9176,7 +9270,7 @@ msgstr "Navigační panel"
msgid "Reload navigation panel"
msgstr "Znovu nahrát navigační panel"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9184,7 +9278,7 @@ msgstr ""
"Byly nalezeny obsáhlé skupiny položek v navigačním panelu, které mohou "
"ovlivnit výkon. Zvažte deaktivování seskupování položek v navigačním panelu."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9192,20 +9286,20 @@ msgstr[0] "nalezen %s výsledek"
msgstr[1] "nalezeny %s výsledky"
msgstr[2] "nalezeno %s výsledků"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filtrovat databáze podle jména nebo regexu"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Vymazat filtr"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtrovat položky podle jména nebo regexu"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Sbalit vše"
@@ -9239,7 +9333,7 @@ msgstr "Nové"
msgid "Database operations"
msgstr "Operace s databází"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Zobrazit skryté položky"
@@ -10458,13 +10552,13 @@ msgstr "Názvy polí: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Neznámý parametr pro import CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10473,13 +10567,13 @@ msgstr ""
"Zadán chybný název pole (%s)! Ujistěte se, že jsou jména polí zapsána "
"správně, oddělena čárkami a nejsou uzavřena v uvozovkách."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Chybný formát CSV dat na řádku %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Chybný počet polí v CSV datech na řádku %d."
@@ -10877,55 +10971,55 @@ msgstr "Zobrazí text jako SQL dotaz se zvýrazňováním syntaxe."
msgid "Formats text as XML with syntax highlighting."
msgstr "Zobrazí text jako SQL dotaz se zvýrazňováním syntaxe."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Chyba: Relace již existuje."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Relace FOREIGN KEY byla vytvořena."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Chyba: Relace nemohla být přidána!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Chyba: Funkce relací jsou vypnuté!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Interní relace byla vytvořena."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: Internal relation could not be added!"
msgstr "Chyba: Relace nemohla být přidána!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation has been added."
msgid "FOREIGN KEY relation has been removed."
msgstr "Relace FOREIGN KEY byla vytvořena."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Chyba: Relace nemohla být přidána!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Chyba: Itenrní relace nemohla být odstraněna!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation has been added."
msgid "Internal relation has been removed."
@@ -11023,11 +11117,17 @@ msgstr "Ukládání dotazů"
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Pamatovat si řazení u tabulkek"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Stručný návod pro zapnutí rozšířených funkcí:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
#| msgid ""
#| "Create the needed tables with the examples/create_tables.sql."
@@ -11036,11 +11136,11 @@ msgstr ""
"Vytvořte potřebné tabulky pomocí skriptu examples/create_tables.sql"
"code>."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Vytvořte uživatele pma a přidělte mu oprávnění na tyto tabulky."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11048,23 +11148,23 @@ msgstr ""
"Zapněte rozšířené funkce v konfiguračním souboru (config.inc.php"
"code>), můžete se inspirovat v config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "žádný popisek"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11072,14 +11172,14 @@ msgid ""
"configuration storage there."
msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -11829,7 +11929,7 @@ msgstr "Nejsou zde žádné události k zobrazení."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Aktuální server:"
@@ -16606,9 +16706,6 @@ msgstr "concurrent_insert je nastaveno na 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Odstranit všechny informace o sledování této tabulky"
-#~ msgid "Show versions"
-#~ msgstr "Zobrazit verze"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -17896,9 +17993,6 @@ msgstr "concurrent_insert je nastaveno na 0"
#~ msgid "Reset"
#~ msgstr "Vynulovat statistiky"
-#~ msgid "Show processes"
-#~ msgstr "Zobrazit procesy"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Vynulovat"
diff --git a/po/cy.po b/po/cy.po
index f5d755a246..b1f4bf478f 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-11-14 19:10+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Dangos pob"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Safle gwreiddiol"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Diddymu"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import files"
msgid "Import status"
msgstr "Mewnforiwch ffeiliau"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "Trothwy'r ffeil log"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Dewis Tablau"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Count tables"
msgid "Go to link:"
msgstr "Cyfrifwch y tablau"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Columns"
msgid "Copy column name."
msgstr "Colofnau"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generadu Cyfrinair"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generadu"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Newid cyfrinair"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "Llu"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Dangos pob"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Indexes"
msgid "Hide Panel"
msgstr "Indecsau"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Dangos grid"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Use text field"
msgid "Link with main panel"
msgstr "Defnyddiwch faes testun"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Use text field"
msgid "Unlink from main panel"
msgstr "Defnyddiwch faes testun"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tablau"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Dangos"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Gweithdrefnau"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "Digwyddiad"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Swyddogaethau"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2703,141 +2746,141 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Gwiriwch y fersiwn diweddaraf"
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Neidiwch i'r gronfa ddata"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Crëwch fersiwn"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Nodweddion perthynas cyffredinol"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Report title"
msgid "Show Report Details"
msgstr "Teitl yr adroddiad"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Anwybyddu"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Dangoswch yr ymholiad hwn yma eto"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "A ydych chi wir am"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Execute bookmarked query"
msgid "%s queries executed %s times in %s seconds."
msgstr "Gweithredu ymholiad a glustnodwyd"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Sylwadau tabl"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "in query"
msgid "Hide arguments"
msgstr "mewn ymholiad"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Cynt"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2845,149 +2888,149 @@ msgid "Next"
msgstr "Nesaf"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Heddiw"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Ionawr"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Chwefror"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Mawrth"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Ebrill"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mai"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Mehefin"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Gorffennaf"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Awst"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Medi"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Hydref"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Tachwedd"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Rhagfyr"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Ion"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Chwe"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Maw"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Meh"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Gor"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aws"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Med"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Hyd"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Tach"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Rhag"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Dydd Sul"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Dydd Llun"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Dydd Mawrth"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "DYdd Mercher"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Dydd Iau"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Dydd Gwener"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Dydd Sadwrn"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2995,205 +3038,205 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Llun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Maw"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Iau"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Llu"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Ia"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Gw"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Wy"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Dim"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Awr"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Munud"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Eiliad"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Defnyddiwch faes testun"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "Nid yn rhif porth ddilys"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3265,16 +3308,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Maint ffont"
@@ -3295,7 +3338,7 @@ msgid "Requery"
msgstr "mewn ymholiad"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3513,7 +3556,7 @@ msgid "Count:"
msgstr "Colofn"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3722,27 +3765,27 @@ msgstr "Dangos clustnod"
msgid "Delete bookmark"
msgstr "Dilëwch berthynas"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Dyw'r gweinydd ddim yn ymateb"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Manylion…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3823,6 +3866,16 @@ msgstr "Caiff geiriau eu gwahanu gan nod bwlch (\" \")."
msgid "Inside tables:"
msgstr "Tu fewn tabl(au):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Dewis Pob"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Dad-ddewis Pob"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Tu fewn colofn:"
@@ -3889,7 +3942,7 @@ msgid "All"
msgstr "Pob"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of columns"
@@ -4209,7 +4262,7 @@ msgstr ""
"ohonyn nhw."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Gweinydd"
@@ -4220,34 +4273,13 @@ msgstr "Gweinydd"
msgid "View"
msgstr "Dangos"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Strwythur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4344,8 +4376,8 @@ msgstr "Ychwanegu/Dileu colofnau"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Cronfeydd Data"
@@ -4470,7 +4502,7 @@ msgid "Recent"
msgstr "Ailosod"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4546,16 +4578,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tablau"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -5083,7 +5105,7 @@ msgstr "Uchaf: %s%s"
msgid "MySQL said: "
msgstr "Dywedodd MySQL: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Esbonio SQL"
@@ -5100,7 +5122,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Heb God PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Creu Cod PHP"
@@ -5226,17 +5248,6 @@ msgstr "Defnyddiwch y gwerth hwn"
msgid "Rows"
msgstr "Rhesi"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5408,7 +5419,7 @@ msgstr "Gweinydd"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5416,24 +5427,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Dylech uwchraddio i %s %s neu'n well."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5684,7 +5695,7 @@ msgid "Set value: %s"
msgstr "Gosod gwerth: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Adfer gwerth diofyn"
@@ -6107,7 +6118,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add constraints"
msgid "Use %s statement"
@@ -6117,7 +6128,7 @@ msgstr "Ychwanegwch cyfyngiadau"
msgid "Save as file"
msgstr "Cadw fel ffeil"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Set nodau y ffeil"
@@ -6144,17 +6155,17 @@ msgstr "Cywasgiad"
msgid "Put columns names in the first row"
msgstr "Rhoi enwau colofnau yn y rhes gyntaf"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Columns enclosed by"
msgid "Columns enclosed with"
msgstr "Amgaewyd colofnau gan"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Columns escaped by"
msgid "Columns escaped with"
@@ -6176,16 +6187,16 @@ msgstr "Amnewid NULL gan"
msgid "Remove CRLF characters within columns"
msgstr "Tynnu nodau CRLF tu fewn colofnau"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "Terfynwyd colofnau gan"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6266,7 +6277,7 @@ msgid "Save on server"
msgstr "Cadw ar y gweinydd"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Trosysgrifo ffeil(iau) sy'n bodoli yn barod"
@@ -6283,8 +6294,8 @@ msgstr "Ychwanegwch werth AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Modd cytunedd SQL"
@@ -6405,17 +6416,17 @@ msgid "Customize browse mode."
msgstr "Modd adferiad awtomatig"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Query results operations"
msgid "Customize default options."
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6447,7 +6458,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Nodweddion"
@@ -6502,177 +6513,189 @@ msgstr "Ffrâm llywio"
msgid "Customize appearance of the navigation panel."
msgstr "Defnyddiwch faes testun"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation frame"
+msgid "Navigation tree"
+msgstr "Ffrâm llywio"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Use text field"
+msgid "Customize the navigation tree."
+msgstr "Defnyddiwch faes testun"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Gweinyddion"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Relational display column"
msgid "Servers display options."
msgstr "Colofn dangosydd perthynol"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Table caption"
msgid "Tables display options."
msgstr "Pennawd y tabl"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "Prif ffrâm"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page name"
msgid "Page titles"
msgstr "Enw'r dudalen"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication"
msgstr "Yn dilysu…"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication settings."
msgstr "Yn dilysu…"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "Coladiad cysylltiad MySQL"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Use text field"
msgid "Customize navigation panel"
msgstr "Defnyddiwch faes testun"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Use text field"
msgid "Customize main panel"
msgstr "Defnyddiwch faes testun"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "Show SQL queries"
msgid "SQL queries settings."
msgstr "Dangos ymholiadau SQL"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Use text field"
msgid "Customize startup page."
msgstr "Defnyddiwch faes testun"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "Cronfeydd Data"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6680,205 +6703,205 @@ msgstr ""
msgid "Table structure"
msgstr "Cronfeydd Data"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Sgema perthynol"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Maint papur"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Defnyddiwch faes testun"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Use text field"
msgid "Customize text input fields."
msgstr "Defnyddiwch faes testun"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
#| msgid "Query results operations"
msgid "Customize default options"
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
#, fuzzy
#| msgid "Warning"
msgid "Warnings"
msgstr "Rhybudd"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Fformat y ffeil a mewnforiwyd"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put columns names in the first row"
msgid "Column names in first row"
msgstr "Rhoi enwau colofnau yn y rhes gyntaf"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "Nifer yr ymholiadau i'w neidio o'r dechrau"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ychwanegwch werth AUTO_INCREMENT"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6886,653 +6909,709 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Use text field"
msgid "Maximum items on first level"
msgstr "Defnyddiwch faes testun"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Dangos grid"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Navigation frame"
msgid "Show logo in navigation panel."
msgstr "Ffrâm llywio"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Pennawd y tabl"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "No tables"
+msgid "Show tables in tree"
+msgstr "Dim tablau"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Dangos grid"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Dangos fersiynau"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Dangos grid"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Dangos meysydd swyddogaeth"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Procedures"
+msgid "Show procedures in tree"
+msgstr "Gweithdrefnau"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Dangos fersiynau"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Dangos grid"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Tablau heb dracio "
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Pennawd y tabl"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Ailenwi tabl i"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "The primary key has been dropped."
msgid "Primary key default sort order"
msgstr "Cafodd yr allwedd gynradd ei gollwng."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Trwsio edafedd"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Colofn dangosydd perthynol"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Relational display column"
msgid "For display Options"
msgstr "Colofn dangosydd perthynol"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authenticating…"
msgid "Authentication method to use."
msgstr "Yn dilysu…"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Methu â chysylltu i'r gweinydd MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Unrhyw westeiwr"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Unrhyw westeiwr"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Cuddio cronfeydd data sydd yn cydweddu â mynegiant arferol (PCRE)"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Cuddio cronfeydd data"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Tabl hanes ymholiadau SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "Enw'r gwesteiwr ble mae'r gweinydd MySQL yn rhedeg"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Enw gwesteiwr y gweinydd"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL allgofnodi"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns table"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Ceisiwch â chysylltu heb gyfrinair"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Cysylltwch heb gyfrinair"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
#, fuzzy
#| msgid ""
#| "n use MySQL wildcard characters (% and _), escape them if you want use ir "
@@ -7546,359 +7625,359 @@ msgstr ""
"ydych am eu defnyddio'n llythrennol, h.y. defnyddiwch 'my\\_db' ac nid "
"'my_db'"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "Gadewch yn wag os nac ydych yn defnyddio 'config auth'"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Cyfrinair am 'config auth'"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "enw cronfa ddata"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Dadansoddi tabl"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Newidynnau"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Soced gweinydd"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Methu â chysylltu i'r gweinydd MySQL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Defnyddio SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "Sgena PDF: cyfesurynnau tabl"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Dangos tabl colofnau"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Ychwanegu DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Ychwanegu DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Ychwanegu DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Datganiadau i'w tracio"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Tabl tracio ymholiadau SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Defnyddiwch Dablau"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Defnyddiwch Dabl Gwesteiwyr"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Dangos ffurflen newid cyfrinair"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Dangos ffurflen creu cronfa ddata"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Sylwadau tabl"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Dangos fersiynau"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
#| msgid "Show function fields"
msgid "Show field types"
msgstr "Dangos meysydd swyddogaeth"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Dangos meysydd swyddogaeth"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Dangos grid"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7910,117 +7989,117 @@ msgstr ""
"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Dangos cysylltiad i phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Dangos ymholiadau SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "mewn ymholiad"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Dangos ystadegau"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Neidio tablau ar glo"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Textarea columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Tab tabl diofyn"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8028,52 +8107,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Cyfeiriadur lanlwytho"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Defnyddio chwiliad cronfa ddata"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Gwiriwch y fersiwn diweddaraf"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Gwirio fersiwn"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8081,86 +8160,86 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Enw defnyddiwr"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Cyfrinair"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Execute bookmarked query"
msgid "Enter executes queries in console"
msgstr "Gweithredu ymholiad a glustnodwyd"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Failed to write file to disk."
msgid "Enable Zero Configuration mode"
@@ -8194,50 +8273,50 @@ msgstr "Yn dilysu…"
msgid "Signon authentication"
msgstr "Yn dilysu…"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Taenlen Open Document"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Lliw cwstwm"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
#, fuzzy
#| msgid "Databases statistics"
msgid "Database export options"
msgstr "Ystadegau cronfeydd data"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV ar gyfer MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8268,7 +8347,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8343,7 +8422,7 @@ msgstr "Crëwch dabl"
msgid "Number of columns"
msgstr "Nifer y colofnau"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8398,69 +8477,69 @@ msgstr "Tablau"
msgid "Format:"
msgstr "Fformat"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Rhesi"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
#, fuzzy
#| msgid "Dump all rows"
msgid "Dump some row(s)"
msgstr "Dadlwytho pob rhes"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Dadlwytho pob rhes"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Cadw ar weinydd mewn cyfeiriadur %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Templed enw ffeil"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8468,84 +8547,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Set nodau'r ffeil:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Cywasgiad"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zip-iwyd\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzip-iwyd\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Cadw fel ffeil"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Creu tabl mewn cronfa ddata %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "llorweddol (penawdau wedi cylchdroi)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Cadw fel ffeil"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Dewis Tablau"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Dewis Tablau"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "enw cronfa ddata"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "Page name"
msgid "New table name"
msgstr "Enw'r dudalen"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Columns"
msgid "Old column name"
msgstr "Colofnau"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Columns"
msgid "New column name"
@@ -9125,7 +9216,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Cuddio"
@@ -9269,11 +9360,6 @@ msgstr "Gw"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Gyrru"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Rename table to"
@@ -9493,29 +9579,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Columns"
+msgid "Groups:"
+msgstr "Colofnau"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Digwyddiadau"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Swyddogaethau"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Gweithdrefnau"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Tablau"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9545,13 +9637,13 @@ msgstr "Ffrâm llywio"
msgid "Reload navigation panel"
msgstr "Ffrâm llywio"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9562,26 +9654,26 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "table name"
msgid "Filter databases by name or regex"
msgstr "enw tabl"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Cadw fel ffeil"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "table name"
msgid "Filter by name or regex"
msgstr "enw tabl"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9617,7 +9709,7 @@ msgstr ""
msgid "Database operations"
msgstr "Ystadegau cronfeydd data"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10893,26 +10985,26 @@ msgstr "Colofnau"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11260,63 +11352,63 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Gwall: perthynas yn bodoli yn barod."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Gwall: Perthynas heb ei ychwanegu."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "Gwall: Perthynas heb ei ychwanegu."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Perthynas mewnol wedi'i ychwanegu"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Gwall: Perthynas heb ei ychwanegu."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Gwall: Perthynas heb ei ychwanegu."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Gwall: Perthynas heb ei ychwanegu."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11409,54 +11501,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Ailenwi tabl i"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12268,7 +12366,7 @@ msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current server"
msgid "Current Server:"
@@ -16978,9 +17076,6 @@ msgstr ""
#~ msgid "Delete tracking data for this table"
#~ msgstr "Dilëwch data tracio ar gyfer y tabl hwn"
-#~ msgid "Show versions"
-#~ msgstr "Dangos fersiynau"
-
#, fuzzy
#~| msgid "Databases"
#~ msgid "Table Structure"
diff --git a/po/da.po b/po/da.po
index cf00ff4dd7..2fe185b32e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-10 23:07+0200\n"
"Last-Translator: Aputsiaĸ Niels Janussen
- Ctrl+klik eller Alt+Click "
"(Mac: Shift+Option+Klik) for at fjerne kolonne fra klausulen ORDER BY"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Klik for at markere/afmarkere."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Dobbeltklik for at kopiere kolonnenavn."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Klik på pilen for valgboks
for at skifte kolonnens synlighed."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Vis alle"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2336,11 +2379,11 @@ msgstr ""
"redigering af gitter, afkrydsningsboks og links til redigering, kopiering og "
"sletning fungerer måske ikke, efter at data er gemt."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr "Indtast venligst en gyldig heximal streng. Gyldige tegn er 0-9 og A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2348,130 +2391,130 @@ msgstr ""
"Sikker på du vil se alle rækkerne? For store tabeller kan dette få browseren "
"til at gå ned."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Oprindelige længde"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "annullér"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Afbrudt"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Gennemført"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Importstatus"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Drop filerne her"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Vælg først en database"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Du kan også redigere de fleste værdier
ved at dobbelt-klikke direkte på "
"dem."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Du kan også redigere de fleste værdier
ved at klikke direkte på dem."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Gå til linket:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Kopiér kolonnenavn."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Højreklik kolonnenavnet for at kopiere det til din udklipsholder."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Generer adgangskode"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generer"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Skift adgangskode"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Mere"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Vis panel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Skjul panel"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Vis skjulte elementer i navigationstræet."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Link med hovedpanel"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Fjern link fra hovedpanel"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"For at filtrere alle databaser på serveren, så tryk Enter efter en søgeterm"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr "For at filtrere alle %s i databasen, så tryk Enter efter en søgeterm"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "tabeller"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "views"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "procedurer"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "hændelser"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "funktioner"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"Den forespurgte side blev ikke fundet i historikken. Den kan være udløbet."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2481,43 +2524,43 @@ msgstr ""
"opgradere. Den nyeste version er %s, udgivet den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", seneste stabile version:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "up-to-date"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Opret view"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Send fejlrapport"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Indsend fejlrapport"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
"Der opstod en alvorlig JavaScript-fejl. Vil du at indsende en fejlrapport?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Tilpas indstillinger for rapportering"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Vis detaljer for rapport"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2525,7 +2568,7 @@ msgstr ""
"Din eksport er ikke komplet, da der er en lav tidsgrænse for afvikling på "
"PHP-niveaut!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2534,65 +2577,65 @@ msgstr ""
"Advarsel: en form har mere end %d felter. Ved afsendelse, vil nogle felter "
"måske blive ignoreret, iht. PHP's max_input_vars konfiguration."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Der er registreret fejl på serveren!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Gennemse venligst bunden af denne side."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignorér alle"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"I henhold til dine indstillinger, så indsendes de i øjeblikket - udvis "
"venligst tålmodighed."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Udfør denne forespørgsel påny?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Er du sikker på at du vil slette dette bogmærke?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Enter executes queries in console"
msgid "%s queries executed %s times in %s seconds."
msgstr "Enter udfører forespørgsler i konsollen"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Tabel kommentarer"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Slet søgeresultater"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2603,343 +2646,343 @@ msgstr ""
"korrekt for dig. I Safari opleves dette typisk under tilstanden \"Private "
"Mode Browsing\"."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Forrige"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Næste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "I dag"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "januar"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "februar"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "marts"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "april"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "maj"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "juni"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "juli"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "august"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "september"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "oktober"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "november"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "dec"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "søndag"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "mandag"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "tirsdag"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "onsdag"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "torsdag"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "fredag"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "lørdag"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "lør"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "sø"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "ti"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "on"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "fr"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "lø"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "uge"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "ingen"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Time"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekund"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Dette felt er påkrævet"
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Ret venligst dette felt"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Angiv en gyldig e-mailadresse"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Angiv en gyldig URL-adresse"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Indtast en gyldig dato"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Indtast en gyldig dato (ISO)"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Angiv et gyldigt tal"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Indtast et gyldigt kreditkortnummer"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Angiv kun tal"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Angiv samme værdi igen"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Angiv venligst ikke mere end {0} tegn"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Angiv mindst {0} tegn"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value between {0} and {1}"
msgstr "Angiv venligst et gyldigt sidenavn"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Angiv venligst en gyldig længde!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Angiv venligst et gyldigt sidenavn"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date or time"
msgstr "Angiv venligst et gyldigt sidenavn"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Angiv venligst et gyldigt nummer!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3012,17 +3055,17 @@ msgstr "pr. time"
msgid "per day"
msgstr "per dag"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Eksisterende konfigurationsfil (%s) kan ikke læses."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Forkerte rettigheder på konfigurationsfil. Må ikke være skrivbar af alle!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Skriftstørrelse"
@@ -3041,7 +3084,7 @@ msgid "Requery"
msgstr "Genforespørg"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3239,7 +3282,7 @@ msgid "Count:"
msgstr "Antal"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3414,7 +3457,7 @@ msgstr "Opdater bogmærke"
msgid "Delete bookmark"
msgstr "Slet bogmærke"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3422,19 +3465,19 @@ msgstr ""
"Serveren svarer ikke (eller den lokale servers socket er ikke korrekt "
"konfigureret)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Serveren svarer ikke."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Tjek venligst privilegier for mappen som indeholder databasen."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detaljer…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
@@ -3509,6 +3552,16 @@ msgstr "Ord adskilles af mellemrumstegn (\" \")."
msgid "Inside tables:"
msgstr "Indeni tabel(ler):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Vælg alle"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Fravælg alle"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Indeni kolonne:"
@@ -3562,7 +3615,7 @@ msgid "All"
msgstr "Alle"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Antal rækker:"
@@ -3860,7 +3913,7 @@ msgstr ""
"sikkert fjernes."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3871,34 +3924,13 @@ msgstr "Server"
msgid "View"
msgstr "Visning"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3993,8 +4025,8 @@ msgstr "Centerkolonner"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Databaser"
@@ -4097,7 +4129,7 @@ msgid "Recent"
msgstr "Seneste"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Favorit tabeller"
@@ -4166,16 +4198,6 @@ msgstr "Joins"
msgid "Sorting"
msgstr "Sortering"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabeller"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Transaktionskoordinator"
@@ -4742,7 +4764,7 @@ msgstr "Maksimum størrelse: %s%s"
msgid "MySQL said: "
msgstr "MySQL returnerede: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Forklar SQL"
@@ -4759,7 +4781,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Uden PHP-kode"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Fremstil PHP-kode"
@@ -4874,17 +4896,6 @@ msgstr "Brug denne værdi"
msgid "Rows"
msgstr "Rækker"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5047,7 +5058,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autorisationsmetode sat i konfiguration:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5058,24 +5069,24 @@ msgstr ""
"konfigurationsindstilling for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/"
"em]. phpMyAdmin anvender i øjeblikket databaseserverens standardtidszone."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du burde opdatere til %s %s eller senere."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Fejl: Token uoverensstemmelse"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "forsøg på overskrivning af GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "muligt sikkerhedshul"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "numerisk tast opfanget"
@@ -5307,7 +5318,7 @@ msgid "Set value: %s"
msgstr "Indstil værdien %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Gendan standardværdi"
@@ -5776,7 +5787,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Maksimal eksekveringstid"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -5786,7 +5797,7 @@ msgstr "Tilføj %s forespørgsel"
msgid "Save as file"
msgstr "Send (download)"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Filens tegnsæt"
@@ -5813,15 +5824,15 @@ msgstr "Komprimering"
msgid "Put columns names in the first row"
msgstr "Indsæt feltnavne i første række"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Kolonner indrammet med"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Kolonner escaped med"
@@ -5837,14 +5848,14 @@ msgstr "Erstat NULL med"
msgid "Remove CRLF characters within columns"
msgstr "Fjern CRLF-tegn i kolonner"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Kolonner afsluttes med"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Linjer afsluttet med"
@@ -5914,7 +5925,7 @@ msgid "Save on server"
msgstr "Gem på server"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Overskriv eksisterende fil(er)"
@@ -5931,8 +5942,8 @@ msgstr "Tilføj AUTO_INCREMENT værdi"
msgid "Enclose table and column names with backquotes"
msgstr "Brug \"backquotes\" omkring tabel- og feltnavne"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL-kompatibilitetstilstand"
@@ -6051,15 +6062,15 @@ msgid "Customize browse mode."
msgstr "Tilpas for gennemsynstilstand."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Tilpas standardindstillinger."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV (kommasepareret)"
@@ -6087,7 +6098,7 @@ msgstr "Standardindstillinger for eksport"
msgid "Customize default export options."
msgstr "Tilpas standardindstillinger for eksport."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Karakteristika"
@@ -6134,40 +6145,52 @@ msgstr "Navigationspanel"
msgid "Customize appearance of the navigation panel."
msgstr "Tilpas navigationspanelets udseende."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigationspanel"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Tilpas navigationspanelet"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servere"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Indstillinger for visning af servere."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Indstillinger for visning af tabeller."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Hovedpanel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Andre kerneindstillinger"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Indstillinger som ikke passer ind andre steder."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Sidetitler"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6180,11 +6203,11 @@ msgstr ""
"Angiv browserens tekst i titelbaren. Se [doc@cfg_TitleTable]dokumentationen[/"
"doc] for tekststrenge der indeholder særlige værdier."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Sikkerhed"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6192,23 +6215,23 @@ msgstr ""
"Bemærk venligst at phpMyAdmin blot er en brugerflade og at den ikke "
"begrænser mulighederne i MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Grundlæggende indstillinger"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Autentifikation"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Indstillinger for autentifikation."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Serverkonfiguration"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6216,15 +6239,15 @@ msgstr ""
"Avanceret serverkonfiguration. Lad være med at ændre disse indstillinger med "
"mindre du ved, hvad de betyder."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Indtast parametre for tilslutning til server."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Lagring af konfiguration"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6234,11 +6257,11 @@ msgstr ""
"funktioner. Se dokumentationen for [doc@linked-tables]phpMyAdmin "
"configuration storage[/doc]."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Ændrer sporing"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6246,111 +6269,111 @@ msgstr ""
"Sporing af ændringer i databasen er udført. phpMyAdmin configuration storage "
"er krævet."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Tilpas eksport-indstillinger"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Tilpas import-indstillinger"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Tilpas navigationspanelet"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Tilpas hovedpanelet"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL-forespørgsler"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL Query-boks"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Tilpas links vist i SQL Query-boksen."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Indstillinger til SQL-forespørgsler."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Opstart"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Tilpas opstartside."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Database-struktur"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Vælg hvilke detaljer, der skal vises i database-strukturen (liste af "
"tabeller)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Tabel-struktur"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Indstillinger for tabel-strukturen (liste af kolonner)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Faner"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Vælg hvordan du ønsker at fanerne skal fungere."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Vis relationel skema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Papirstørrelse"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Tekstfelter"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Tilpas tekstfelter."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! tekst"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Tilpas standardindstillinger"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Advarsler"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Deaktiver nogle af advarslerne, som phpMyAdmin viser."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6358,15 +6381,15 @@ msgstr ""
"Aktivér [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] komprimering for "
"import og eksport-funktionerne."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Yderligere parametre til iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6374,11 +6397,11 @@ msgstr ""
"Hvis aktiveret, vil phpMyAdmin fortsætte med at udføre efterfølgende SQL-"
"forespørgsler selvom et eller flere af dem fejler."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignorer flere efterfølgende fejl i udtryk"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6388,25 +6411,25 @@ msgstr ""
"udløber. Dette kan være godt ved store import-filer, men kan afbryde "
"transaktioner."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Delvis import: tillad afbrydelse"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Afbryd ikke ved fejl i INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6414,69 +6437,69 @@ msgstr ""
"Standard format, vær opmærksom på, at denne liste afhænger af sted (databae, "
"tabel) og kun SQL er altid tilgængelig."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Format på importeret fil"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Brug LOCAL nøgleord"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Indsæt feltnavne i første række"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Importér ikke tomme rækker"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importér valutaer ($5.00 til 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importér procenter med korrekte decimaler (12.00% bliver til .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Antal forespørgsler, der skal springes over fra start."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Delvis import: spring over forespørgsler"
# zero = null?
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Brug ikke AUTO_INCREMENT for 0-værdier"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Skydernes udgangspunkt"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Hvor mange rækker kan der indsættes på een gang."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Antal indsatte rækker"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr "Maksimalt antal tegn vist i ikke-numerisk kolonne ved gennemsyn."
# karakterer gives i skolen eller er personer i film
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Begræns antal tegn i kolonne"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6486,11 +6509,11 @@ msgstr ""
"logout kun for den aktuelle server.Sættes denne til FALSE, kan man let "
"glemme at logge ud fra andre servere, når man er forbundet til flere servere."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Slet alle cookies, når der logges ud"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6498,11 +6521,11 @@ msgstr ""
"Definer om den foregående login skal gentages eller ej i [kbd]cookie[/kbd] "
"autentifikationstilstand."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Gendan brugernavn"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6514,48 +6537,48 @@ msgstr ""
"blive slettet så snart browservinduet lukkes. Dette anbefales for ikke-"
"sikrede omgivelser."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Login cookie sletning"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Definerer hvor længe (i sekunder) en login cookie er gyldig."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Gyldighed for login cookie"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Dobbelt størrelse for tekstboks for LONGTEXT kolonner."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Større tekstboks for LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Maksimalt antal tegn, når en SQL-forespørgsel vises."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Maksimal vist SQL-længde"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Brugere kan ikke sætte en højere værdi"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Maksimalt antal databaser som vises i listen med databaser."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Maksimalt antal databaser"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6563,21 +6586,21 @@ msgstr ""
"Antallet af elementer som kan vises i øverste niveau på hver side i "
"navigationstræet."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Maksimum for elementer i første niveau"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr "Antallet af elementer som kan vises i hver side i navigationstræet."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Maksimum for elementer i gren"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6585,19 +6608,19 @@ msgstr ""
"Antal rækker vist, når man kigger på et sæt resultater. Hvis resultatet "
"indeholder flere rækker, links til \"Forrige\" og \"Næstet\" vil blive vist."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Maksimum af antal viste rækker"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Maksimalt antal tabeller vist i tabellisten."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Maksimalt antal tabeller"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6605,40 +6628,40 @@ msgstr ""
"Antallet af bytes et script må allokere, fx. [kbd]32M[/kbd] ([kbd]0[/kbd] "
"for ubegrænset)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Hukommelsesgrænse"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr "I navigationspanelet erstattes databasetræet med en valgfunktion"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Vis databasenavigationen som en træstruktur"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Link med hovepanelet ved at fremhæve den nuværende database eller tabel."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Vis logoet i navigationspanel."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Vis logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL som logoet i navigationspanelet vil pege på."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Logo link-URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6646,27 +6669,27 @@ msgstr ""
"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt "
"([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Henvisning for placering af logo"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Vis servervalg øverst i venstre panel."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Vis servervalg"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Mål for hurtigt valg ikon"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Mål for det andet hurtigvalg-ikon"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6674,15 +6697,15 @@ msgstr ""
"Angiver det mindste antal af elementer (tabeller, visninger, rutiner og "
"begivenheder), der skal indgå for at vise en filterboks."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Det mindste antal af elementer, der skal til for at vise filterboksen"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Mindste antal databaser, der skal vises i database-filterboksen"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6693,104 +6716,163 @@ msgid ""
msgstr ""
"Gruppér elementer i navigationstræet (iht. separator defineret nedenfor)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Gruppér elementer i træet"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Streng, der inddeler databaser i træ."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Separator til databaseinddeling"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Streng, der inddeler tabeller i træ."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Separator til tabelinddeling"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Maksimal dybde på databasetræ"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Fremhæv server under musepil."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Aktivér fremhævning"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"Om der skal eller ikke skal tilbydes udvidelse af træ i navigationspanelet."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Slå udfoldelse af navigationstræ til"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Vis/skjul tabelliste"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"Om der skal eller ikke skal tilbydes udvidelse af træ i navigationspanelet."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Vis versioner"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Vis databasenavigationen som en træstruktur"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Vis funktionsfelter"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Vis tråde"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Vis versioner"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Vis databasenavigationen som en træstruktur"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
"Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Tidligere anvendte tabeller"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Dette er Ret, Kopi og Slet links."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Hvor links til tablerækker skal vises"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "Brug naturlig rækkefølge ved sortering af tabeller og databasenavne."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Naturlig rækkefølge"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Brug kun ikoner, kun tekst eller begge."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Tabelbaseret navigationsbjælke"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Brug GZip output buffering til forhøjet hastighed i HTTP overførsler."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Buffering af GZip-output"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6798,19 +6880,19 @@ msgstr ""
"[kbd]SMART[/kbd] - dvs faldende orden for kolonner af type TIME, DATE, "
"DATETIME og TIMESTAMP ellers stigende orden."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Standard sorteringsrækkefølge"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Brug vedvarende forbindelser til MySQL databaser."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Vedvarende forbindelser"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6820,11 +6902,11 @@ msgstr ""
"hvis nogen af de påkrævede tabeller i phpMyAdmin configuration storage ikke "
"kunne findes."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Manglende phpMyAdmin configuration storage tabeller"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6832,11 +6914,11 @@ msgstr ""
"Deaktiver standardadvarslen som vises, hvis der registreres en forskel "
"mellem MySQL-biblioteket og serveren."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Advarsel om server/bibliotek-forskel"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6844,27 +6926,27 @@ msgstr ""
"Deaktiver standardadvarslen, som vises på struktursiden, hvis kolonnenavne i "
"en tabel er reserverede MySQL-ord."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Advarsel om MySQL-reserverede ord"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Sådan vises menufanerne"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Sådan vises forskellige hændelseshenvisninger"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Tillad ikke redigering af BLOB og BINARY kolonner."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Beskyt binære kolonner"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6874,104 +6956,104 @@ msgstr ""
"configuration storage). Hvis deaktiveret bruges JS-rutiner til at vise "
"forespørgselshistorik (mistes når vinduet lukkes)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Permanent forespørgselshistorie"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Hvor mange forespørgsler er gemt i historikken."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Længde på forespørgselshistorik"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "Vælg hvilke funktioner, der vil blive brugt for tegnsætskonvertering."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Omkodningsværktøj"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Når tabeller vises huskes sorteringen af hver tabel."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Husk tabellens sortering"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Forvalgt sorteringsrækkefølge for tabeller med en primær nøgle."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Forvalgt sorteringsrækkefølge for primær nøgle"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Gentag overskrifter for hver X celler, [kbd]0[/kbd] deaktiverer dette."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Gentag overskrifter"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Gitter-redering: trigger/udløser-handling"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Relationel visning"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "For visningsindstillinger"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Gitter-redigering: gem alle redigerede celler med det samme"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Mappe, hvor eksporterede data kan gemmes på serveren."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Gemmemappe"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Efterlades blank, hvis ikke brugt."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Autorisationsrækkefølge for vært"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Efterlades blank for standardværdi."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Host autorisationsregler"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Tillad login uden adgangskode"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Tillad root login"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Tidszone for session"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6979,15 +7061,15 @@ msgstr ""
"Angiver den gældende tidszone; denne er muligvis forskellige fra dén som "
"findes på din databaseserver"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP Basic Auth Realm navn, der vises ved HTTP Auth."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6997,19 +7079,19 @@ msgstr ""
"autentifikation[/a] (ikke fundet i din dokumentrod; forslag: /etc/swekey."
"conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey konfigurationsfil"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Metode for autentifikation."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentifikationstype"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7017,11 +7099,11 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af [a@http://wiki.phpmyadmin."
"net/pma/bookmark]bogmærkeer[/a], forslag: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Bogmærketabel"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7029,31 +7111,31 @@ msgstr ""
"Efterlades tom for ingen kolonnekommentar-/mime-typer, forslag: "
"[kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Tabel for kolonneinformation"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Komprimer forbindelse til MySQL server."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Komprimer forbindelse"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Hvordan forbindes til server, behold [kbd]tcp[/kbd] hvis usikker."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Forbindelsestype"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Adgangskode for kontrolbruger"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7061,11 +7143,11 @@ msgstr ""
"En speciel MySQL bruger med begrænsede tilladelser. Mere information på "
"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Kontrolbruger"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7073,11 +7155,11 @@ msgstr ""
"En alternativ vært til lageropbevaring af konfiguration; Tom for at benytte "
"den vært som allerede er defineret."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Kontrolvært"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7088,15 +7170,15 @@ msgstr ""
"standardporten, eller den allerede angivne port, hvis kontrolværten er lig "
"værten."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Kontrolport"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Gem databaser som matcher regulært udtryk (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7104,15 +7186,15 @@ msgstr ""
"Mere information om [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Deaktiver brug af INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Skjul databaser"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7120,23 +7202,23 @@ msgstr ""
"Efterlades tom for at fravælge historik-understøttelse for SQL-"
"forespørgsler, forslag: [kbd]pma_history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL forespørgselsshistoriktabel"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Servernavn, hvor MySQL server kører."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Servernavn"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Log ud URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7144,15 +7226,15 @@ msgstr ""
"Begrænser antallet af tabel-præferencer som lagres i databasen. De ældte "
"poster fjernes automatisk."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Maksimalt antal tabel-præferencer, der lagres"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "QBE gemte søger tabel"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7160,11 +7242,11 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af QBE-skematik, forslag: "
"[kbd]pma_pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Center tabelkolonner"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7172,15 +7254,15 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af kolonner, forslag: "
"[kbd]pma_table_coords[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Prøv at forbinde uden adganskode."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Forbind uden adgangskode"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7189,30 +7271,30 @@ msgstr ""
"Du kan bruge MySQL jokertegn (% and _), escape dem hvis du vil bruge dem som "
"almindelige tegn, fx brug [kbd]'my\\_db'[/kbd] og ikket [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Vis kun listede databaser"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Lades tom hvis du ikke bruger config auth."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Adgangskode for config auth"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: "
"[kbd]pma_pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF-skematik: pages tabel"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7222,20 +7304,20 @@ msgstr ""
"wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for komplet information. Lades blank "
"ved ingen understøttelse. Forslag: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasenavn"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "Port hvorpå MySQL server lytter, lades tom for standard."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Serverport"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7243,11 +7325,11 @@ msgstr ""
"Efterlades tom for at undlade \"vedvarende\", senest benyttede tabeller på "
"tværs af sessioner, forslag: [kbd]pma_recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Senest benyttede tabel"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7255,11 +7337,11 @@ msgstr ""
"Efterlades tom for at undlade \"vedvarende\", favorit tabeller på tværs af "
"sessioner, forslag: [kbd]pma_favorit[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Favorit tabeller"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7267,11 +7349,11 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af [a@http://wiki.phpmyadmin."
"net/pma/relation]relation-links[/a], forslag: [kbd]pma_relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Relationstabel"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7279,31 +7361,31 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/"
"a] for et eksempel."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Login sessionsnavn"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Login URL"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "Socket hvorpå MySQL server lytter, lades tom for standard."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Server-sokkel"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Aktiver SSL for forbindelse til MySQL-serveren."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Brug SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7311,11 +7393,11 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: "
"[kbd]pma_table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Designer og PDF-skema: tabelkoordinater"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7323,11 +7405,11 @@ msgstr ""
"Tabel til beskrivelse af visningskolonnerne, efterlades tom for at undlade "
"understøttelse; forslag: [kbd]pma_table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Visningskolonnetabel"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7335,11 +7417,11 @@ msgstr ""
"Efterlades tom for at undlade \"vedvarende\" brugerflade-præferencer for "
"tabel på tværs af sessioner, forslag: [kbd]pma_table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "UI præference tabel"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7347,11 +7429,11 @@ msgstr ""
"Om en DROP DATABASE IF EXISTS kommando skal tilføjes som første linje i "
"loggen når en database oprettes."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Tilføj DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7359,11 +7441,11 @@ msgstr ""
"Om en DROP TABLE IF EXISTS kommando skal tilføjes som første linje i loggen "
"når en tabel oprettes."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Tilføj DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7371,20 +7453,20 @@ msgstr ""
"Om en DROP VIEW IF EXISTS kommando skal tilføjes som første linje i loggen "
"når et view oprettes."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Tilføj DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definerer listen af forspørgsler, som auto-creation bruger for nye sessioner."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Forespørgsler, der skal spores"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7392,22 +7474,22 @@ msgstr ""
"Efterlades tom for at undlade understøttelse af sporing på SQL-forspørgsler, "
"forslag: [kbd]pma_tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Sporingstabel for SQL-forespørgsler"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Om sporingsmekanismen opretter versioner automatisk for tabeller og views."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Opret versioner automatisk"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7415,11 +7497,11 @@ msgstr ""
"Efterlades tom for at undlade lagring af bruger-præferencer i database, "
"forslag: [kbd]pma_userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Bruger preference storage tabel"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7429,11 +7511,11 @@ msgstr ""
"menus funktioner; Efterlade en af dem tom vil deaktivere denne funktion, "
"foreslået: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Brugertabel"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7443,11 +7525,11 @@ msgstr ""
"funktioner; efterlades en af dem tom vil dette deaktivere denne funktion, "
"foreslået: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Tabel for brugergrupper"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7455,15 +7537,15 @@ msgstr ""
"Efterlades tom for deaktivere muligheden for at skjule eller vise "
"navigationselementer, forslag: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Tabel for skjulte navigationselementer"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Bruger for config auth"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7471,19 +7553,19 @@ msgstr ""
"En brugervenlig beskrivelse af serveren. Lad stå tom for at vise "
"værtstnavnet i stedet."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Udvidet navn for denne server"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Om en \"vis alle (rækker)\" knap, skal vises for brugeren."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Tillad visning af alle rækker"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7494,15 +7576,15 @@ msgstr ""
"konfigurationsfilen; dette begrænser ikke muligheden for at udføre den samme "
"kommando direkte."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Vis formular til ændring af adgangskode"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Vis formular til databaseoprettelse"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7511,72 +7593,72 @@ msgstr ""
"Vis eller skjul en kolonne, der viser oprettelses-tidsstempel for alle "
"tabeller."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabel kommentarer"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Vis eller skjul en kolonne, der viser oprettelses-tidsstempel for alle "
"tabeller."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Vis tidsstempel for oprettelse"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Vis eller skjul en kolonne, der viser tidsstempel med seneste opdatering for "
"alle tabeller."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Vis tidsstempel med seneste opdatering"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Vis eller skjul en kolonne, der viser tidsstempel med seneste tjek for alle "
"tabeller."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Vis tidsstempel for Seneste tjek"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
"Definerer om typefelter skal startes med at vises i ret/indsæt tilstand."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Vis felttyper"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Vis funktionsfelterne i rediger/indsæt tilstand."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Vis funktionsfelter"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Om hints skal vises eller ej."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Vis hint"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7584,53 +7666,53 @@ msgstr ""
"Viser link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Vis phpinfo() link"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Vis detaljeret MySQL serverinformation"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Definerer om SQL-forespørgsler genereret af phpMyAdmin skal vises."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Vis SQL-forespørgsler"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Definerer som forespørgselsboksen skal forblive på siden efter indsendelse."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Bevar forespørgeselsboks"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "Tillad visning af database og databasestatistikker (eks. diskforbrug)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Vis statistik"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Marker brugte tabeller og gør det muligt at vise databaser med låste "
"tabeller."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Spring over låste tabeller"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7638,11 +7720,11 @@ msgid ""
"detected."
msgstr "En advarsel vises på hovedsiden, hvis Suhosin registreres."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin advarsel"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7652,11 +7734,11 @@ msgstr ""
"indstillingen session.gc_maxlifetime er mindre end værdien af "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Advarsel om gyldighed for logincookie"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7669,11 +7751,11 @@ msgstr ""
"fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet "
"(*1,25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Tekstboks kolonner"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7686,31 +7768,31 @@ msgstr ""
"fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet "
"(*1,25)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Tekstboks rækker"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Titel på browservindue, når en database er valgt."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Titel på browservindue, når ingenting er valgt."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Standardtitel"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Titel på browservindue, når en server er valgt."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Titel på browservindue, når en tabel er valgt."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7722,27 +7804,27 @@ msgstr ""
"Forwarded-For) header der kommer fra proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste af trusted proxies til IP tillad/afvis"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Mappe på server, hvor man kan uploade filer til import."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Mappe til uploads"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Tillad søgning i hele databasen."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Brug databasesøgning"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7750,26 +7832,26 @@ msgstr ""
"Når deaktiveret kan brugere ikke sætte nogen af indstillingerne nedenfor "
"uafhængig af checkboksen til højre."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Aktivér udviklerfanen i indstillinger"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Tjek for den seneste version"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Aktiverer tjek for den seneste version på hovedsiden for phpMyAdmin."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Versionscheck"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7781,11 +7863,11 @@ msgstr ""
"for denne, hvis server hvorpå phpMyAdmin er installeret, ikke har direkte "
"adgang til internettet. Formatet er: \"værtsnavn:portnummer\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Proxy-url"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7796,19 +7878,19 @@ msgstr ""
"Basic Authentication (grundlæggende godkendelsestjek). På nuværende "
"tidspunkt understøttes der ikke andre godkendelsestjek."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Brugernavn for proxy"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Adgangskoden til godkendelsestjek på proxyen."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Adgangskode for proxy"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7816,45 +7898,45 @@ msgstr ""
"Aktivér [a@http://en.wikipedia.org/wiki/ZIP_(fil_format)]ZIP[/a] "
"komprimering ved import and eksport operationer."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Angiv din offentlige nøgle for dit domænes reCaptcha-tjeneste."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Offentlig nøgle for reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Angiv din private nøgle for dit domænes reCaptcha-tjeneste."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Privat nøgle for reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Vælg standardhandlingen for afsendelse af fejlrapporter."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Send fejlrapporter"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Enter udfører forespørgsler i konsollen"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7862,7 +7944,7 @@ msgstr ""
"Slå tilstanden Zero Configuration til - denne lader sig tilpasse "
"lagringstabeller for phpMyAdmin-konfigurationen automatisk."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Slå tilstanden Zero Configuration til"
@@ -7888,44 +7970,44 @@ msgstr "HTTP autentifikation"
msgid "Signon authentication"
msgstr "Login autentifikation"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV vha. LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument regneark"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Hurtig"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Brugerdefineret"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Database eksportindstillinger"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV til MS Excel-data"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
@@ -7956,7 +8038,7 @@ msgstr ""
"Du benytter en udvidelse som er udfaset i phpMyAdmin. Venligst overvej ay "
"installere mysqli udvidelsen."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr "Kunne ikke indlæse skemaudvidelser, tjek venligst din installation!"
@@ -8021,7 +8103,7 @@ msgstr "Opret tabel"
msgid "Number of columns"
msgstr "Antal kolonner"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Kunne ikke indlæse eksportplugins, tjek venligst din installation!"
@@ -8064,11 +8146,11 @@ msgstr "Tabel(ler):"
msgid "Format:"
msgstr "Format:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Formatspecifikke indstillinger:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8076,52 +8158,52 @@ msgstr ""
"Rul ned for at udfylde indstillingerne for det valgte format og ignorer "
"indstillingerne for andre formater."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Konvertering af indkodning:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Rækker:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Hent nogle række(r)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Begyndelsesrække:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Hent alle rækker"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Output:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Gem på serveren i mappen %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Skabelon for filnavn:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ vil blive servernavnet"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ vil blive databasenavnet"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ vil blive tabelnavnet"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8132,64 +8214,76 @@ msgstr ""
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
"vil blive bevaret som det er. Se %4$sFAQ%5$s for detaljer."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "brug dette til fremtidige eksports"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Tegnsæt for filen:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Komprimering:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zippet"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzippet"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Se output som tekst"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Eksportér visninger som tabeller"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Eksportér tabel-hoveder"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Omdøb eksporterede databaser/tabeller/kolonner"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Gem output i en fil"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Spring over tabeller større end"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Vælg en database"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Vælg en tabel"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nyt databasenavn"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nyt tabelnavn"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Gammelt kolonnenavn"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nyt kolonnenavn"
@@ -8813,7 +8907,7 @@ msgid "Create an index on %s columns"
msgstr "Opret et indeks på %s kolonner"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Skjul"
@@ -8947,11 +9041,6 @@ msgstr "Fra"
msgid "To"
msgstr "Til"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Send"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Tilføj tabelpræfiks:"
@@ -9166,22 +9255,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Der opstod en fejl under indlæsning af navigationsvisningen"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Gruppenavn:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Hændelser:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funktioner:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procedurer:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tabeller:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Views:"
@@ -9207,7 +9302,7 @@ msgstr "Navigationspanel"
msgid "Reload navigation panel"
msgstr "Genindlæs navigationspanel"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9215,27 +9310,27 @@ msgstr ""
"Der er en store elementgrupper i navigationspanelet, der kan påvirke "
"ydelsen. Overvej at slå elementgrupperingen fra i navigationspanelet."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "Fandt %s resultat"
msgstr[1] "Fandt %s resultater"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filtrér databaser efter navn eller regex"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Ryd hurtig-filter"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtrér efter navn eller regex"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Fold alle sammen"
@@ -9270,7 +9365,7 @@ msgstr "Ny"
msgid "Database operations"
msgstr "Databasehandlinger"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Vis skjulte elementer"
@@ -10513,13 +10608,13 @@ msgstr "Kolonnenavne: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Ugyldigt parameter for CSV-import: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10528,13 +10623,13 @@ msgstr ""
"Invalid kolonne (%s) angivet! Sørg for, at kolonnenavneer stavet korrekt, "
"adskilt med komma og ikke i citationstegn."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ugyldigt format for CSV-input på linie %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Ugyldigt kolonneantal i CSV-input på linie %d."
@@ -10936,47 +11031,47 @@ msgstr "Formatterer teksten som JSON med syntaksfremhævning."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formatterer tekst som XML med syntaksfremhævning."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Fejl: relation findes allerede."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY relation tilføjet."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Fejl: FOREIGN KEY-relationen kunne ikke tilføjes!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Fejl: Manglende indeks for kolonne(r)."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Fejl: Relationelle egenskaber er slået fra!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Intern relation tilføjet."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Fejl: Den interne relation kunne ikke tilføjes!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "FOREIGN KEY-relationen er blevet fjernet."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Fejl: FOREIGN KEY-relationen kunne ikke fjernes!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Fejl: Den interne relation kunne ikke fjernes!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Den interne relation er blevet fjernet."
@@ -11063,20 +11158,26 @@ msgstr "Gemmer Query-By-Example søgninger"
msgid "Managing Central list of columns"
msgstr "Håndter centerliste for kolonner"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Husk tabellens sortering"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Hurtige trin for at opsætte avancerede muligheder:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "Opret de nødvendige tabeller med %screate_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Opret en pma bruger og giv adgang til disse tabeller."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11084,23 +11185,23 @@ msgstr ""
"Aktivér avancerede muligheder i konfigurationfilen (config.inc.php"
"code>), fx ved at starte med config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Re-login til phpMyAdmin for at indlæse den opdaterede konfigurationsfil."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "ingen beskrivelse"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgid ""
@@ -11108,13 +11209,13 @@ msgid ""
"configuration storage there."
msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "%sOpret%s phpMyAdmin-konfigurationslageret i den aktuelle database."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager."
@@ -11857,7 +11958,7 @@ msgstr "Der er ingen hændelser at vise."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Aktuel server:"
@@ -16630,9 +16731,6 @@ msgstr "concurrent_insert er sat til 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Slet sporingsdata for denne tabel"
-#~ msgid "Show versions"
-#~ msgstr "Vis versioner"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -17958,9 +18056,6 @@ msgstr "concurrent_insert er sat til 0"
#~ msgid "Reset"
#~ msgstr "Nulstil"
-#~ msgid "Show processes"
-#~ msgstr "Vis tråde"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Nulstil"
diff --git a/po/de.po b/po/de.po
index 67109fa4fd..c03b93cef6 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-24 09:21+0200\n"
"Last-Translator: Hauke Henningsen
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2342,28 +2385,28 @@ msgstr ""
"DESC zu wechseln.
- Strg oder Alt+Klicken (Mac: Shift+Option+Klicken), "
"um die Spalte von der ORDER BY-Klausel zu entfernen"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Klicken zum Aus- bzw. Abwählen."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Doppelklicken, um den Spaltennamen zu kopieren."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr ""
"Den Pfeil des Aufklappsmenüs anklicken
um die Sichtbarkeit der Spalte "
"umzustellen."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Alles anzeigen"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2373,13 +2416,13 @@ msgstr ""
"Kopieren und Löschen von Links können nach dem Speichern eventuell nicht "
"funktionieren."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Bitte geben Sie eine gültige hexadezimale Zeichenfolge ein. Gültige Zeichen "
"sind 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2387,134 +2430,134 @@ msgstr ""
"Sollen wirklich alle Datensätze angezeigt werden? Bei einer großen Tabelle "
"könnte dies den Browser zum Absturz bringen."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Ursprüngliche Länge"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "abbrechen"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Abgebrochen"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Erfolg"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Importstatus"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Dateien hier ablegen"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Zuerst Datenbank auswählen"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Sie können die meisten Werte auch bearbeiten,
indem Sie darauf "
"doppelklicken."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Sie können die meisten Werte auch bearbeiten,
indem Sie darauf klicken."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Gehe zur Verknüpfung:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Spaltennamen kopieren."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Klicken Sie auf den Spaltennamen, um ihn in die Zwischenablage zu kopieren."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Passwort generieren"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generieren"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Passwort ändern"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Mehr"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Panel anzeigen"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Panel ausblenden"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Zeige versteckte Navigationselemente."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Mit Hauptpanel verknüpfen"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Verknüpfung mit Hauptpanel aufheben"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Enter nach dem Suchbegriff drücken, um alle Datenbanken auf dem Server zu "
"filtern"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Um alle %s in Datenbank zu filtern, nach einem Suchbegriff Enter drücken"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "Tabellen"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "Ansichten"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "Prozeduren"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "Ereignisse"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "Funktionen"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"Die angeforderte Seite wurde nicht im Verlauf gefunden, sie könnte "
"abgelaufen sein."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2524,28 +2567,28 @@ msgstr ""
"empfohlen. Die aktuelle Version ist %s, erschienen am %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", aktuelle stabile Version:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "auf dem neuesten Stand"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Erzeuge View"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Fehlerbericht senden"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Fehlerbericht senden"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2553,15 +2596,15 @@ msgstr ""
"Es ist ein JavaScript Fehler aufgetreten. Möchten Sie einen Fehlerbericht "
"senden?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Einstellungen für Berichte ändern"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Berichtdetails anzeigen"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2569,7 +2612,7 @@ msgstr ""
"Ihr Export ist unvollständig, wegen eines niedrigen Ausführungszeit-Limits "
"in PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2579,63 +2622,60 @@ msgstr ""
"werden einige der Felder möglicherweise ignoriert, wegen der PHP-"
"Konfiguration max_input_vars."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Einige Fehler wurden auf dem Server entdeckt!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Bitte schauen Sie am unteren Ende dieses Fensters."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Alles ignorieren"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Gemäß Ihrer Einstellungen werden diese derzeit übermittelt, seien Sie bitte "
"geduldig."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Diese Abfrage erneut ausführen?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Möchten Sie dieses Lesezeichen wirklich löschen?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr "Beim Laden der SQL-Debug-Informationen ist ein Fehler aufgetreten."
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
-#| msgid "Enter executes queries in console"
msgid "%s queries executed %s times in %s seconds."
msgstr "%s Abfragen %s mal in %s Sekunden ausgeführt."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr "%s Argument(e) übergeben"
-#: js/messages.php:594
-#| msgid "Show table comments"
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Argumente einblenden"
-#: js/messages.php:595
-#| msgid "Hide search results"
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Argumente ausblenden"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr "Nötige Zeit:"
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2646,331 +2686,331 @@ msgstr ""
"nicht korrekt funktionieren. In Safari wird dieses Problem häufig durch den "
"privaten Modus verursacht."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorher"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Nächster"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Heute"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Januar"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Februar"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "März"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "April"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mai"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Juni"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Juli"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "August"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "September"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Oktober"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "November"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Dezember"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mrz"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Sonntag"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Montag"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Dienstag"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Mittwoch"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Donnerstag"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Freitag"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Samstag"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Wo"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Stunde"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekunde"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Dieses Feld muss ausgefüllt werden"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Bitte korrigieren Sie dieses Feld"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Bitte geben Sie eine gültigen E-Mail-Adresse ein"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Bitte geben Sie eine gültige URL ein"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Bitte geben Sie ein gültiges Datum ein"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Bitte geben Sie ein gültiges Datum (ISO) ein"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Bitte geben Sie eine gültige Zahl ein"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Bitte geben Sie nur Ziffern ein"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Bitte geben Sie denselben Wert nochmal ein"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Bitte nicht mehr als {0} Zeichen eingeben"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Bitte geben Sie mindestens {0} Zeichen ein"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Bitte geben Sie einen zwischen {0} und {1} Zeichen langen Wert ein"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} ein"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Bitte geben Sie einen Wert kleiner gleich {0} ein"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Bitte geben Sie einen Wert größer gleich {0} ein"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Bitte geben Sie ein gültiges Datum oder eine gültige Zeitangabe ein"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Bitte geben Sie einen gültige hexadezimale Eingabe ein"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3044,18 +3084,18 @@ msgstr "pro Stunde"
msgid "per day"
msgstr "pro Tag"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Bestehende Konfigurationsdatei (%s) kann nicht gelesen werden."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Falsche Zugriffsrechte auf die Konfigurationsdatei. Schreibzugriff sollte "
"nicht für alle möglich sein!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Schriftgröße"
@@ -3074,7 +3114,7 @@ msgid "Requery"
msgstr "Erneut abfragen"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3204,17 +3244,14 @@ msgid "Press Enter to execute query"
msgstr "Drücken Sie Enter, um die Abfrage auszuführen"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "aufsteigend"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "absteigend"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Reihenfolge:"
@@ -3223,7 +3260,6 @@ msgid "Count"
msgstr "Zähler"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Ausführungsreihenfolge"
@@ -3232,37 +3268,31 @@ msgid "Time taken"
msgstr "Nötige Zeit"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Sortieren nach:"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Abfragen umgruppieren"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Abfragen voneinander lösen"
#: libraries/Console.class.php:315
-#| msgid "Show create"
msgid "Show trace"
msgstr "Nachverfolgung anzeigen"
#: libraries/Console.class.php:316
-#| msgid "Hide Panel"
msgid "Hide trace"
msgstr "Nachverfolgung ausblenden"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Anzahl:"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3351,7 +3381,6 @@ msgid "Sort:"
msgstr "Sortierung:"
#: libraries/DBQbe.class.php:630
-#| msgid "Sort:"
msgid "Sort order:"
msgstr "Sortierungsreihenfolge:"
@@ -3436,7 +3465,7 @@ msgstr "Lesezeichen aktualisieren"
msgid "Delete bookmark"
msgstr "Lesezeichen löschen"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3444,21 +3473,21 @@ msgstr ""
"Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers "
"nicht korrekt konfiguriert)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Der Server antwortet nicht."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
"Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank "
"befindet."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Details…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
@@ -3534,6 +3563,16 @@ msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt."
msgid "Inside tables:"
msgstr "In der/den Tabelle(n):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Alle auswählen"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Auswahl entfernen"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "In Spalte:"
@@ -3587,7 +3626,7 @@ msgid "All"
msgstr "Alle"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Anzahl der Datensätze:"
@@ -3893,7 +3932,7 @@ msgstr ""
"möglicherweise entfernt werden."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3904,34 +3943,13 @@ msgstr "Server"
msgid "View"
msgstr "Ansicht"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4026,8 +4044,8 @@ msgstr "Zentrale Spalten"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Datenbanken"
@@ -4130,7 +4148,7 @@ msgid "Recent"
msgstr "Letzte"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Favoriten-Tabellen"
@@ -4199,16 +4217,6 @@ msgstr "Tabellenverknüpfungen (joins)"
msgid "Sorting"
msgstr "Sortierung"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabellen"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Transaktions-Koordinator"
@@ -4783,7 +4791,7 @@ msgstr "Maximal: %s%s"
msgid "MySQL said: "
msgstr "MySQL meldet: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL erklären"
@@ -4800,7 +4808,7 @@ msgstr "Explain auf %s analysieren"
msgid "Without PHP Code"
msgstr "ohne PHP-Code"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP-Code erzeugen"
@@ -4914,17 +4922,6 @@ msgstr "Diesen Wert verwenden"
msgid "Rows"
msgstr "Datensätze"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Daten"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5092,7 +5089,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Ungültige Authentifikationsmethode:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5104,24 +5101,24 @@ msgstr ""
"[%3$d]['SessionTimeZone'][/em]. phpMyAdmin verwendet aktuell die Standard-"
"Zeitzone des Datenbankservers."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Sie sollten auf %s %s oder neuer aktualisieren."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Fehler: Token stimmen nicht überein"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS Überschreibversuch"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "Mögliche Ausnutzung"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "Numerischer Schlüssel entdeckt"
@@ -5175,7 +5172,6 @@ msgid "display column"
msgstr "Anzeigespalte"
#: libraries/config.values.php:102
-#| msgid "Welcome to %s"
msgid "Welcome"
msgstr "Willkommen"
@@ -5344,7 +5340,7 @@ msgid "Set value: %s"
msgstr "Setze Wert: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Voreingestellten Wert wiederherstellen"
@@ -5831,7 +5827,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Maximale Ausführungszeit"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "%s-Befehl verwenden"
@@ -5840,7 +5836,7 @@ msgstr "%s-Befehl verwenden"
msgid "Save as file"
msgstr "Senden"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Zeichensatz der Datei"
@@ -5867,15 +5863,15 @@ msgstr "Kompression"
msgid "Put columns names in the first row"
msgstr "Spaltennamen in die erste Zeile setzen"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Spalten eingeschlossen von"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Spalten escaped mit"
@@ -5891,14 +5887,14 @@ msgstr "Ersetze NULL durch"
msgid "Remove CRLF characters within columns"
msgstr "CRLF-Zeichen aus den Zeilen entfernen"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Spalten enden mit"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Zeilen enden mit"
@@ -5968,7 +5964,7 @@ msgid "Save on server"
msgstr "Auf Server speichern"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Bestehende Datei(en) überschreiben"
@@ -5985,8 +5981,8 @@ msgstr "AUTO_INCREMENT-Wert hinzufügen"
msgid "Enclose table and column names with backquotes"
msgstr "Tabellen- und Feldnamen mit Backticks umschließen"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL-Kompatibilitätsmodus"
@@ -6105,15 +6101,15 @@ msgid "Customize browse mode."
msgstr "Anzeigemodus anpassen."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Standard-Einstellungen anpassen."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6141,7 +6137,7 @@ msgstr "Voreinstellung für Export"
msgid "Customize default export options."
msgstr "Standard-Exporteinstellungen anpassen."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Funktionen"
@@ -6186,40 +6182,52 @@ msgstr "Navigationspanel"
msgid "Customize appearance of the navigation panel."
msgstr "Aussehen des Navigationspanels anpassen."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigationspanel"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Navigationspanel anpassen"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Server"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Anzeigeoptionen für Server."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Anzeigeoptionen für Tabellen."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Hauptpanel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Sonstige Einstellungen"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Einstellungen welche in keine andere Kategorie passten."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Seitentitel"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6227,11 +6235,11 @@ msgstr ""
"Text für die Browser-Titelleiste. Weitere Informationen über Schlüsselwörter "
"und Variablennamen in der [doc@faq6-27]Dokumentation[/doc]."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Sicherheit"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6239,23 +6247,23 @@ msgstr ""
"Beachten Sie, dass phMyAdmin nur eine Bedienoberfläche ist und die "
"Möglichkeiten von MySQL nicht einschränkt."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Grundeinstellungen"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Authentifizierung"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Authentifizierungseinstellungen."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Serverkonfiguration"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6263,15 +6271,15 @@ msgstr ""
"Erweiterte Serverkonfiguration, ändern Sie diese Einstellungen nur, wenn Sie "
"wissen was Sie tun."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Geben Sie die Verbindungsparameter für den Server ein."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Konfigurationsspeicher"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6281,11 +6289,11 @@ msgstr ""
"Features zu erhalten, siehe [doc@linked-tables]phpMyAdmin-"
"Konfigurationsspeicher[/doc] in der Dokumentation."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Änderungen verfolgen"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6293,111 +6301,111 @@ msgstr ""
"Verfolgen von Datenbankänderungen. Erfordert eine konfigurierte PMA-"
"Datenbank."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Exportoptionen anpassen"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Importeinstellungen anpassen"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Navigationspanel anpassen"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Hauptpanel anpassen"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL-Abfragen"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL-Querybox"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Angezeigte Links in SQL-Querybox ändern."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Einstellungen für SQL-Abfragen."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Start"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Startseite anpassen."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Datenbank-Struktur"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Wählen Sie aus, welche Details in der Datenbankstrukturansicht (Liste der "
"Tabellen) angezeigt werden sollen."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Tabellenstruktur"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Einstellungen für die Tabellenstruktur (Spaltenliste)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Tabs"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Wählen Sie wie die Tabs funktionieren sollen."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Beziehungsschema anzeigen"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Papiergröße"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Textfelder"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Texteingabefelder anpassen."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! Text"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Standard-Einstellungen anpassen"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Warnungen"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Unterdrücken einiger phpMyAdmin-Warnhinweise."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6405,15 +6413,15 @@ msgstr ""
"[a@http://de.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und "
"Exportoperationen aktiviren."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Extra Parameter für iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6421,11 +6429,11 @@ msgstr ""
"Wenn aktiv, fährt phpMyAdmin bei der Verarbeitung von multi-Statement-Querys "
"fort, wenn eine Query fehlschlägt."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Fehler bei Multi-Statements ignorieren"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6435,26 +6443,26 @@ msgstr ""
"Zeitlimit bald erreicht ist. Dies ist eine gute Idee zum Importieren von "
"großen Files, kann aber Probleme mit Transaktionen verursachen."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Teilweiser Import: Unterbrechung erlauben"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Bei INSERT Fehler nicht abbrechen"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr "ON DUPLICATE KEY UPDATE hinzufügen"
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
"Daten aktualisieren, wenn doppelte Schlüssel beim Importieren erkannt werden"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6462,69 +6470,69 @@ msgstr ""
"Voreingestelltes Format. Bitte beachten, dass diese Liste vom Ort abhängt "
"(Datenbank, Tabelle) und nur SQL immer verfügbar ist."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Format der importierten Datei"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "verwende LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Spaltennamen in der ersten Zeile"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Keine leeren Datensätze importieren"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Währungen importieren ($5.00 zu 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Prozentwerte als Dezimalzahlen importieren (12.00% wird zu 0.12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Anzahl der am Anfang zu überspringenden Abfragen."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Teilimport: Überspringe Anfragen"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Anfangswert für Schieberegler"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Anzahl der auf einmal einfügbaren Datensätze."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Anzahl der eingefügten Datensätze"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Maximal dargestellte Zeichenzahl bei Anzeige einer nicht-numerischen Spalte "
"in einer SQL-Abfrage."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Zeichen pro Spalte begrenzen"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6534,11 +6542,11 @@ msgstr ""
"FALSE, wird logout nur auf dem aktuellen Server vollzogen. FALSE macht es "
"leicht, logout auf andern Servern zu vergessen."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "All Cookies beim Logout löschen"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6546,11 +6554,11 @@ msgstr ""
"Definiert ob im [kbd]Cookie[/kbd] Authentifizierungsmodus der vorherige "
"Login wieder aufgerufen werden soll oder nicht."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Benutzername wiederherstellen"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6562,48 +6570,48 @@ msgstr ""
"Sitzung gespeichert wird und beim Schließen des Browserfensters sofort "
"gelöscht wird. Dies wird für nicht vertrauenswürdige Umgebungen empfohlen."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Login Cookie Speicherung"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Legt fest, wie lange (in Sekunden) ein Login Cookie gültig ist."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Login Cookie Gültigkeit"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Verdoppele Größe für LONGTEXT Spalten."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Größere Textfelder für LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Maximal dargestellte Zeichenzahl bei Anzeige einer SQL-Abfrage."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Zeichen Maximum beim SQL Befehl anzeigen"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Benutzer dürfen keinen größeren Wert setzen"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Maximale Anzahl der in der Datenbankliste angezeigten Datenbanken."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Datenbanken Maximum"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6611,11 +6619,11 @@ msgstr ""
"Anzahl der Elemente, die pro Seite auf der ersten Ebene im Navigationsbaum "
"angezeigt werden können."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Maximale Elemente auf erster Ebene"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6623,11 +6631,11 @@ msgstr ""
"Anzahl der Elemente, die pro Seite im Navigationsbaum angezeigt werden "
"können."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Maximale Elemente in Zweig"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6635,19 +6643,19 @@ msgstr ""
"Anzahl der angezeigten Datensätze in einem Abfrage-Ergebnis. Wenn mehr "
"Datensätze vorhanden sind, werden \"Previous\" and \"Next\" Links angezeigt."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Maximale Anzahl der angezeigten Datensätze"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Tabellen Maximum"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6655,41 +6663,41 @@ msgstr ""
"Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. "
"[kbd]32M[/kbd] ([kbd]0[/kbd] .für unbegrenzt)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Speicher Limit"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr "Im Navigationsbereich den Datenbankbaum durch ein Auswahlmenü ersetzen"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Datenbanknavigation als Baum anzeigen"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Verknüpfen Sie mit Hauptbereich durch die Hervorhebung der aktuellen "
"Datenbank oder Tabelle."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Logo im Navigationspanel anzeigen."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Logo anzeigen"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL, auf die das Logo im Navigationspanel zeigt."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL für Logo-Link"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6697,27 +6705,27 @@ msgstr ""
"Öffne Links im aktuellen Fenster([kbd]main[/kbd]) oder in einem neuen "
"Fenster ([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Ziel für Logo-Link"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Serverauswahl oben im Navigationspanel anzeigen."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Server-Auswahl anzeigen"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Ziel für Schnellzugriff-Icon"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Ziel für zweites Schnellzugriff-Icon"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6725,16 +6733,16 @@ msgstr ""
"Legt die minimale Anzahl Elemente fest (Tabellen, Ansichten, Routinen und "
"Ereignisse), ab denen ein Filter-Feld angezeigt wird."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Minimale Anzahl Elemente, ab denen Filter-Feld angezeigt wird"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
"Minimale Anzahl der Datenbanken, die im Datenbank-Filterfeld angezeigt werden"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6742,111 +6750,171 @@ msgstr ""
"Elemente im Navigationsbaum gruppieren (wie vom im obigen „Datenbanken und "
"Tabellen“-Reiter definierten Trennzeichen bestimmt)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Elemente im Baum gruppieren"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
"Zeichenkette, die Datenbanken in unterschiedliche Baum-Abschnitte unterteilt."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Trennzeichen für Datenbank-Baum"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
"Zeichenkette, die Tabellen in unterschiedliche Baum-Abschnitte unterteilt."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Trennzeichen für Tabellen-Baum"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Maximale Tiefe des Tabellen-Baumes"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Server unter Mauscursor hervorheben."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Hervorhebung ermöglichen"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"Wird die Möglichkeit der Baumerweiterung im Navigationsbereich angeboten "
"oder nicht."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Erweiterung des Navigationsbaumes aktivieren"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Tabellen-Liste anzeigen/ausblenden"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"Wird die Möglichkeit der Baumerweiterung im Navigationsbereich angeboten "
+"oder nicht."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Versionen anzeigen"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Datenbanknavigation als Baum anzeigen"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Funktionsfelder anzeigen"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Prozesse anzeigen"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Versionen anzeigen"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Datenbanknavigation als Baum anzeigen"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Maximale Anzahl der kürzlichen verwendeten Tabellen, auf 0 setzen zum "
"deaktivieren."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
"Maximale Anzahl der bevorzugten Tabellen, auf 0 setzen zum deaktivieren."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Kürzlich verwendete Tabellen"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Dies sind Bearbeitungs-, Kopier- und Löschlinks."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Wo die Datensatz-Links angezeigt werden sollen"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
"Ob Verlinkungen zu Tabellenzeilen auch in Abwesenheit eines eindeutigen "
"Schlüssels angezeigt werden."
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr "Verlinkungen zu Tabellenzeiĺen dennoch anzeigen"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
"Natürliche Sortierreihenfolge für Tabellen- und Datenbanknamen verwenden."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Natürliche Reihenfolge"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Verwende nur Icons, nur Text oder beides."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Tabellen-Navigationsleiste"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Verwende Gzip output buffering, um HTTP transfers zu beschleunigen."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip Ausgabepufferung"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6854,19 +6922,19 @@ msgstr ""
"[kbd]SMART[/kbd] - d.h. absteigende Sortierung für die Feldtypen TIME, DATE, "
"DATETIME und TIMESTAMP, sonst aufsteigende Sortierung."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Voreingestellte Sortierung"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Verwende andauernde Verbindungen zu MySQL Datenbanken."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Persistente Verbindung"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6876,11 +6944,11 @@ msgstr ""
"erforderliche Tabelle der phpMyAdmin Konfiguration nicht gefunden werden "
"kann."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6888,11 +6956,11 @@ msgstr ""
"Standardmeldung unterdrücken, wenn die Version des Servers und der MySQL-"
"Bibliothek sich unterscheiden."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Warnung bei unterschiedlicher Server-/Bibliothek-Version"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6900,27 +6968,27 @@ msgstr ""
"Standardhinweis der Struktur-Seite unterdrücken, wenn Spaltennamen in einer "
"Tabelle reservierte MySQL-Wörter sind."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Warnung wegen reservierter MySQL-Wörter"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Wie sollen die Menüpunkte dargestellt werden"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Wie verschiedene Aktions-Links angezeigt werden"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Änderungen an BLOB und BINARY Feldern verbieten."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "BINARY-Felder schützen"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6931,106 +6999,106 @@ msgstr ""
"Routinen zur Darstellung des Abfrageverlaufs eingesetzt (sie gehen beim "
"Schließen des Fensters verloren)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Anfragelog speichern"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Anzahl der Abfragen in der Historie."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Länge des Abfrageverlaufs"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "Wahl der Funktionen zur Zeichensatz-Konvertierung."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Umwandlungs Engine"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
"Während des Durchsehens der Tabellen wird die Sortierung zwischengespeichert."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Tabellensortierung zwischenspeichern"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Standard-Sortierreihenfolge für Tabellen mit einem Primärschlüssel."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Standardsortierreihenfolge des Primärschlüssels"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Kopfzeilen alle n Zellen anzeigen, [kbd]0[/kbd] deaktiviert diese Option."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Kopfzeilen wiederholen"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Sofort-Bearbeiten: Aktions-Auslöser"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Relationale Anzeige"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Für Anzeigeoptionen"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Sofort-Bearbeiten: Alle bearbeiteten Zellen auf einmal speichern"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Verzeichnis auf dem Server für Exports."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Speicher Verzeichnis"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Leer lassen, wenn unbenutzt."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Host-Autorisierungsreihenfolge"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Leer lassen, um die Voreinstellungen zu verwenden."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Host-Autorisierungsregeln"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Erlaube Logins ohne Passwort"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Erlaube root Login"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Zeitzone der Sitzung"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7038,15 +7106,15 @@ msgstr ""
"Setzt die effektive Zeitzone; möglicherweise von der Ihres Datenbankservers "
"abweichend"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP Basic Auth Bereich Name der bei HTTP Auth angezeigt wird."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP Bereich"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7056,19 +7124,19 @@ msgstr ""
"Authentifizierung[/a] (liegt nicht im Webhauptverzeichnis (document root); "
"empfohlen: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey Konfigurationsdatei"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Zu benutzende Authentifikations-Methode."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Authentifikationstyp"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7076,11 +7144,11 @@ msgstr ""
"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]Lesezeichen[/a]-Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Lesezeichen Tabelle"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7088,32 +7156,32 @@ msgstr ""
"Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Spalten Informationen Tabelle"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Komprimiere die Verbindung zum MySQL-Server."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Verbindung komprimieren"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Art der Verbindung zum Server, im Zweifelsfalle auf [kbd]tcp[/kbd] belassen."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Art der Verbindung"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "pmadb Benutzer Passwort"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7121,11 +7189,11 @@ msgstr ""
"Ein besonderer MySQL Nutzer mit eingeschränkten Rechten, nähere "
"Informationen auf [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "pmadb Benutzer"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7133,11 +7201,11 @@ msgstr ""
"Eine alternative Host für den Konfiguration Speicher; leer lassen, um die "
"bereits definierten Host zu verwenden."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "pmadb Host"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7147,15 +7215,15 @@ msgstr ""
"verbinden; leer lassen, um den Standardport, oder den bereits definierten "
"Port, wenn der Kontrollhost dem Host gleicht."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Kontroll-Port"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Verberge Datenbanken, die auf regular expressions (PCRE) passen."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7164,15 +7232,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Benutzung von INFORMATION_SCHEMA deaktivieren"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Datenbanken verstecken"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7180,23 +7248,23 @@ msgstr ""
"Leer lassen für keine SQL Abfrageverlaufs-Unterstützung, Vorschlag: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL Abfragehistorien Tabelle"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Rechnername auf dem der MySQL Server läuft."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Hostname"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Abmelde URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7204,15 +7272,15 @@ msgstr ""
"Begrenzt die Anzahl der Tabelle Einstellungen die in der Datenbank "
"gespeichert werden, die ältesten Einträge werden automatisch gelöscht."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Maximale Anzahl der zu speichernden Tabelleneinstellungen"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Beispielabfragentabelle"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7220,11 +7288,11 @@ msgstr ""
"Leer lassen um keine Beispielabfragen nutzen zu können, Vorschlag: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Tabelle für zentrale Spalten"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7232,15 +7300,15 @@ msgstr ""
"Leer lassen für keine Unterstützung für zentrale Spalten, Vorschlag: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Versuche ohne Passwort zu verbinden."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Ohne Passwort verbinden"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7250,30 +7318,30 @@ msgstr ""
"Bedeutung wiederhergestellt, d.h. [kbd]'my\\_db'[/kbd] und nicht "
"[kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Nur aufgelistete Datenbanken zeigen"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Leer lassen, wenn config auth nicht verwendet wird."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Passwort für config Authentifikation"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF-Schema: Seiten-Tabelle"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7283,20 +7351,20 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] für komplette Information. Leer lassen "
"für keine Unterstützung. Vorschlag: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Datenbankname"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "Port, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Port"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7304,11 +7372,11 @@ msgstr ""
"Leer lassen, um die kürzlich verwendeten Tabellen nicht in der Datenbank "
"\"dauerhaft\" zu speichern, Vorschlag: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Kürzlich verwendete Tabellen"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7316,11 +7384,11 @@ msgstr ""
"Leer lassen, um die favorisierten Tabellen nicht in der Datenbank dauerhaft "
"zu speichern, Vorschlag: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Favoriten-Tabelle"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7328,11 +7396,11 @@ msgstr ""
"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"link[/a] Unterstützung, Vorschlag: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Relation Tabelle"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7340,32 +7408,32 @@ msgstr ""
"Siehe [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]Authentifizierungsarten[/a] für ein Beispiel."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Anmelde Session-Name"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Anmelde URL"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Socket, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Server Socket"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Ermögliche SSL für Verbindung zum MySQL-Server."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Benutze SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7373,11 +7441,11 @@ msgstr ""
"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Designer- und PDF-Schema: Tabellenkoordinaten"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7385,11 +7453,11 @@ msgstr ""
"Tabelle zur Beschreibung der Anzeigespalten, leer lassen für keine "
"Unterstützung; Vorschlag: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Tabelle für Anzeigespalten"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7397,11 +7465,11 @@ msgstr ""
"Leer lassen, um die Oberflächeneinstellungen nicht \"dauerhaft\" in der "
"Datenbank zu speichern, Vorschlag: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Tabelle für Oberflächeneinstellungen"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7409,11 +7477,11 @@ msgstr ""
"DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als "
"erste Zeile loggen."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE hinzufügen"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7421,11 +7489,11 @@ msgstr ""
"DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste "
"Zeile loggen."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "DROP TABLE hinzufügen"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7433,21 +7501,21 @@ msgstr ""
"DROP VIEW IF EXISTS statement beim Erstellen einer neuen Ansicht als erste "
"Zeile loggen."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "DROP VIEW hinzufügen"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Legt die Liste der Statements fest, welche die automatische "
"Versionserstellung für neue Versionen verwenden."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Zu verfolgende Statements"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7455,11 +7523,11 @@ msgstr ""
"Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Tabelle mit Verfolgung der SQL-Abfragen"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7467,11 +7535,11 @@ msgstr ""
"Automatische Versionserstellung für Tabellen und Ansichten durch den "
"Verlaufs-Mechanismus."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Versionen automatisch erzeugen"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7479,11 +7547,11 @@ msgstr ""
"Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu "
"speichern, Vorschlag: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Tabelle für Benutzereinstellungen"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7493,11 +7561,11 @@ msgstr ""
"konfigurierbare Menüs zu nutzen; wenn eines von beiden leer gelassen wird "
"wird dieses Feature deaktiviert, Vorschlag: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Benutzer-Tabelle"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7507,11 +7575,11 @@ msgstr ""
"konfigurierbare Menüs zu nutzen; wenn eines von beiden leer gelassen wird "
"wird dieses Feature deaktiviert, Vorschlag: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Benutzergruppen-Tabelle"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7519,15 +7587,15 @@ msgstr ""
"Leer lassen, um die Navigation anzuzeigen oder zu verstecken, Vorschlag: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Tabelle für ausgeblendete Navigations-Elemente"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Benutzername für config Authentifikation"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7535,21 +7603,21 @@ msgstr ""
"Benutzerfreundlicher Name des Servers. Leer lassen um den tatsächlichen "
"Rechnernamen anzuzeigen."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Serverbezeichnung"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Ob dem Benutzer eine Schaltfläche „Alle (Datensätze) anzeigen” "
"angezeigt werden soll."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Erlaube es alle Datensätze anzuzeigen"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7560,55 +7628,55 @@ msgstr ""
"dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben "
"Befehls."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Zeige Formular zur Passwort-Änderung"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Zeige Formular zur Datenbank-Erstellung"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr "Eine Spalte mit den Kommentaren für alle Tabellen ein-/ausblenden."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr "Tabellen-Kommentare einblenden"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Eine Spalte mit dem Erstellungs-Zeitstempel für alle Tabellen ein-/"
"ausblenden."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Erstellungs-Zeitstempel anzeigen"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Eine Zeile mit dem Zeitstempel des letzten Updates für alle Tabellen ein-/"
"ausblenden."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Zeitstempel des letzten Updates anzeigen"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Eine Zeile mit dem Zeitstempel der letzten Überprüfung für alle Tabellen "
"ein-/ausblenden."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Zeitstempel der letzten Überprüfung einblenden"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7616,27 +7684,27 @@ msgstr ""
"Definiert, ob Typen-Felder anfänglich im Bearbeiten/Einfügen-Modus angezeigt "
"werden."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Feld-Typen anzeigen"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Im Bearbeiten/Einfügen Modus Funktionsfelder anzeigen."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Funktionsfelder anzeigen"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Hinweise anzeigen."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Hinweis anzeigen"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7644,57 +7712,57 @@ msgstr ""
"Zeige Link zu [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"Ausgabe."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Zeige phpinfo() Link"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Zeige detailierte MySQL-Server Informationen"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Legt fest, ob von phpMyAdmin generierte SQL-Abfragen angezeigt werden "
"sollten."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Zeige SQL Anfragen"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Definiert, ob das Abfragefeld nach dem Absenden geöffnet bleiben sollte."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Abfragefeld weiterhin anzeigen"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Erlaube die Anzeige von Datenbank- und Tabellen-Statistiken, ( z.B. "
"Platzbedarf)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Zeige Statistik"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Markiere benutzte Tabellen und ermögliche die Anzeige von Tabellen mit "
"gesperrten Tabellen."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Überspringe gesperrte Tabellen"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7702,11 +7770,11 @@ msgstr ""
"Default-Warnhinweis auf der Hauptseite deaktivieren, der angezeigt wird, "
"wenn Suhosin erkannt wird."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin Warnhinweis"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7716,11 +7784,11 @@ msgstr ""
"der Wert der PHP-Einstellung session.gc_maxlifetime kleiner als der Wert von "
"`LoginCookieValidity` ist."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Login-Cookie Gültigkeitswarnung"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7728,11 +7796,11 @@ msgstr ""
"Textfeldgröße (in Spalten) im Bearbeitungsmodus. Dieser Wert wird vergrößert "
"für Textfelder bei SQL-Abfragen (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Textfeldspalten"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7740,31 +7808,31 @@ msgstr ""
"Textfeldgröße (in Zeilen) im Bearbeitungsmodus. Dieser Wert wird vergrößert "
"für Textfelder bei SQL-Abfragen (*2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Textfeldzeilen"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Titelleiste des Browserfensters wenn eine Datenbank ausgewählt ist."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Titelleiste des Browserfensters wenn nichts ausgewählt ist."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Standardtitel"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Titelleiste des Browserfensters wenn ein Server ausgewählt ist."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Titelleiste des Browserfensters wenn eine Tabelle ausgewählt ist."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7776,27 +7844,27 @@ msgstr ""
"For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd] kommt, vertrauen soll."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste der Vertrauenswürdigen Proxies für IP Filter"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Verzeichnis auf dem Server zum Upload von zu importierenden Dateien."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Upload Verzeichnis"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Erlaube Suche in der gesammten Datenbank."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Datenbank Suche"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7804,26 +7872,26 @@ msgstr ""
"Wenn deaktiviert, können Benutzer – unabhängig von der Checkbox rechts – "
"keine der untenstehenden Einstellungen ändern."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Aktiviere den Reiter \"Entwickler\" in den Einstellungen"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Auf neue Version prüfen"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Versionsüberprüfung"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7836,11 +7904,11 @@ msgstr ""
"keinen direkten Zugriff auf das Internet hat. Das Format ist: \"Hostname:Port"
"\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Proxy-URL"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7851,21 +7919,21 @@ msgstr ""
"Authenfizierung verwendet. Momentan werden andere Arten der "
"Authentifizierung nicht unterstützt."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Proxy-Benutzername"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Das Kennwort für die Authentifizierung mit dem Proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Proxy-Passwort"
# Maybe wikipedia links should point to $lang.wikipedia.org, eg
# http://de.wikipedia.org/wiki/ZIP-Dateiformat
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7873,38 +7941,38 @@ msgstr ""
"[a@http://de.wikipedia.org/wiki/ZIP-Dateiformat]ZIP[/a]-Kompression für "
"Import- und Exportoperationen aktivieren."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
"Geben Sie Ihren öffentlichen Schlüssel für Ihren Domain-ReCaptcha-Service "
"ein."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Öffentlicher Schlüssel für reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
"Geben Sie Ihren privaten Schlüssel für Ihren Domain-ReCaptcha-Service ein."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Privater Schlüssel für reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Wählen Sie die Standardaktion, beim Senden von Fehlerberichten."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Fehlerberichte senden"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7912,11 +7980,11 @@ msgstr ""
"Abfragen werden durch Enter (anstelle von Strg+Enter) ausgeführt. Neue "
"Zeilen werden mit Shift+Enter eingefügt."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Enter führt SQL-Abfragen in der Konsole aus"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7924,7 +7992,7 @@ msgstr ""
"Aktivieren Sie den Keine-Konfiguration-Modus um phpMyAdmin die "
"Konfigurationsspeichertabellen automatisch zu erzeugen."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Keine-Konfiguration-Modus aktivieren"
@@ -7950,44 +8018,44 @@ msgstr "HTTP-Authentifizierung"
msgid "Signon authentication"
msgstr "Signon-Authentifizierung"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV mit LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Kalkulationstabelle"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Schnell"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Export-Optionen der Datenbank"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV-Daten für MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "OpenDocument-Text"
@@ -8018,7 +8086,7 @@ msgstr ""
"Sie verwenden die Mysql-Erweiterung, die in PhpMyAdmin veraltet ist. Bitte "
"erwägen Sie die Mysqli-Erweiterung zu installieren."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
"Die Schema-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre "
@@ -8085,7 +8153,7 @@ msgstr "Erzeuge Tabelle"
msgid "Number of columns"
msgstr "Anzahl der Spalten"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Export-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre "
@@ -8130,11 +8198,11 @@ msgstr "Tabelle(n):"
msgid "Format:"
msgstr "Format:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Formatspezifische Optionen:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8142,52 +8210,52 @@ msgstr ""
"Scrollen Sie zu den Optionen für das ausgewählte Format. Ignorieren Sie die "
"übrigen Formate."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Zeichensatz Umwandlung:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Datensätze:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Einige Datensätze exportieren"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Anfangsdatensatz:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Alle Datensätze exportieren"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Ausgabe:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Speichere auf dem Server im Verzeichnis %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Vorlage für den Dateinamen:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ wird durch den Servernamen ersetzt"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ wird durch den Datenbanknamen ersetzt"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8199,64 +8267,76 @@ msgstr ""
"durchgeführt: %3$s. Der übrige Text bleibt unberührt. Für weitere "
"Informationen lesen Sie die %4$sFAQ%5$s."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "Diese Einstellungen auch für zukünftige Exporte verwenden"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Zeichencodierung der Datei:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Komprimierung:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "Zip-komprimiert"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "GZip-komprimiert"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Ausgabe als Text anzeigen"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Exportiere Ansicht als Tabelle"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Exportiere Tabellenkopfzeilen"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Exportierte Datenbanken/Tabellen/Spalten umbenennen"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Speichere Ausgabe in Datei"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Überspringe Tabellen grösser als"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Datenbankauswahl"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Tabellenauswahl"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Neuer Datenbankname"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Name der neuen Tabelle"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Alter Spaltennamen"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Neuer Spaltennamen"
@@ -8890,7 +8970,7 @@ msgstr "Index über %s Spalten anlegen"
# Hide heist im deutschen in der EDV ausblenden
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Verstecken"
@@ -9024,11 +9104,6 @@ msgstr "Von"
msgid "To"
msgstr "Zu"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Abschicken"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Tabellen-Präfix hinzufügen:"
@@ -9241,22 +9316,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Beim Laden des Navigationsansicht ist ein Fehler aufgetreten"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Gruppenname:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Ereignisse:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funktionen:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Prozeduren:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tabellen:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Ansichten:"
@@ -9280,7 +9361,7 @@ msgstr "Navigationspanel-Einstellungen"
msgid "Reload navigation panel"
msgstr "Navigations-Panel aktualisieren"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9289,27 +9370,27 @@ msgstr ""
"Geschwindigkeit leiden. Eventuell sollten Sie das Gruppieren von Elementen "
"im Navigations-Panel abschalten."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s Ergebnis gefunden"
msgstr[1] "%s Ergebnisse gefunden"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Datenbanken nach Namen oder Regex filtern"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Schnellfilter löschen"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Nach Name oder Regex filtern"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Alles auf-/zuklappen"
@@ -9345,7 +9426,7 @@ msgstr "Neu"
msgid "Database operations"
msgstr "Datenbank-Operationen"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Ausgeblendete Elemente anzeigen"
@@ -10585,13 +10666,13 @@ msgstr "Spaltennamen: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Ungültiger Parameter für CSV-Import: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10601,13 +10682,13 @@ msgstr ""
"richtig geschrieben, durch Kommata getrennt und nicht von Anführungszeichen "
"eingeschlossen sind."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ungültiges Format in Zeile %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Ungültige Anzahl an Spalten im CSV-Import in Zeile %d."
@@ -11010,47 +11091,47 @@ msgstr "Formatiert den Text als JSON mit Syntaxhervorhebung."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formatiert den Text als XML mit Syntaxhervorhebung."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Fehler: Verknüpfung existiert bereits."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Fremdschlüssel-Beziehung wurde hinzugefügt."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Fehler: Fremdschlüssel-Beziehung konnte nicht hinzugefügt werden!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Fehler: Fehlender Index über Spalte(n)."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Fehler: Beziehungsfunktionen wurde deaktiviert!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Interne Verknüpfung wurde hinzugefügt."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Fehler: Interne Verknüpfung konnte nicht hinzugefügt werden!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Fremdschlüssel-Beziehung wurde beseitigt."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Fehler: Fremdschlüssel-Beziehung konnte nicht beseitigt werden!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Fehler: Interne Verknüpfung konnte nicht beseitigt werden!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Interne Verknüpfung wurde beseitigt."
@@ -11137,21 +11218,27 @@ msgstr "Suchen als Beispielabfragen speichern"
msgid "Managing Central list of columns"
msgstr "Verwaltung von zentralen Liste der Spalten"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Tabellensortierung zwischenspeichern"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Kurzanleitung zum Einrichten der zusätzlichen Funktionen:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Erstellen der benötigten Tabellen mittels %screate_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Den Benutzer pma einrichten und Zugriff auf diese Tabellen geben."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from ) aktiviert werden. Beispiele finden sich in der config.sample.inc.php."
@@ -11160,16 +11247,16 @@ msgstr ""
"phpconfig."
"sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "keine Beschreibung"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
@@ -11179,7 +11266,7 @@ msgstr ""
"anzulegen. Sie können zum „Operationen“-Tab einer beliebigen Datenbank "
"gehen, um in dieser den phpMyAdmin-Konfigurationsspeicher einzurichten."
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -11188,7 +11275,7 @@ msgstr ""
"Eine Datenbank mit Namen „phpmyadmin“ %sanlegen%s und dort die phpMyAdmin-"
"Konfigurationsspeicher-Tabellen einrichten."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@@ -11196,7 +11283,7 @@ msgstr ""
"%sErzeuge%s die PhpMyAdmin-Konfigurationsspeicherung in der aktuellen "
"Datenbank."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen %sanlegen%s."
@@ -11959,7 +12046,7 @@ msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten."
msgid "Ignoring unsupported language code."
msgstr "Ignoriere nicht unterstützten Sprach-Code."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Aktueller Server:"
@@ -13833,9 +13920,6 @@ msgstr "Ansicht als PHP-Code"
#: libraries/sql.lib.php:1767
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
@@ -13846,9 +13930,6 @@ msgstr ""
#: libraries/sql.lib.php:1778
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, Edit, Copy "
"and Delete features may result in undesired behavior. %s"
@@ -16802,9 +16883,6 @@ msgstr "concurrent_insert ist auf 0 gesetzt"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Lösche die Verlaufsdaten dieser Tabelle"
-#~ msgid "Show versions"
-#~ msgstr "Versionen anzeigen"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18187,9 +18265,6 @@ msgstr "concurrent_insert ist auf 0 gesetzt"
#~ msgid "Reset"
#~ msgstr "Zurücksetzen"
-#~ msgid "Show processes"
-#~ msgstr "Prozesse anzeigen"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Zurücksetzen"
diff --git a/po/el.po b/po/el.po
index bf85821bb5..2cbfce03f9 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-22 14:51+0200\n"
"Last-Translator: Παναγιώτης Παπάζογλου
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2329,26 +2372,26 @@ msgstr ""
"ASC/DESC.
- Control+Κλικ ή Alt+Κλικ (Για Mac: Shift+Option+Click) για "
"απομάκρυνση της στήλης από τη δήλωση ORDER BY"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Πατήστε για εναλλαγή επισήμανσης."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Διπλό κλικ για αντιγραφή ονόματος στήλης."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Εμφάνιση όλων"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2357,12 +2400,12 @@ msgstr ""
"την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή "
"ίσως να μη λειτουργούν μετά την αποθήκευση."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Εισάγετε ένα έγκυρο δεκαεξαδικό αριθμό. Έγκυροι χαρακτήρες είναι 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2370,133 +2413,133 @@ msgstr ""
"Θέλετε πραγματικά να δείτε όλες τις εγγραφές; Για ένα μεγάλο πίνακα, αυτό "
"ίσως φέρει δυσλειτουργία στον φυλλομετρητή σας."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Αρχικό μήκος"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "άκυρο"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Ακυρωμένες συνδέσεις"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Επιτυχία"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Κατάσταση εισαγωγής"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Ρίξτε αρχεία εδώ"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Επιλέξτε βάση δεδομένων πρώτα"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας με "
"διπλό κλικ κατευθείαν σε αυτές."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας "
"κατευθείαν σε αυτές."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Μετάβαση στο σύνδεσμο:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Αντιγραφή ονόματος στήλης."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Δεξί κλικ στο όνομα στήλης για αντιγραφή του στο πρόχειρο."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Δημιουργία κωδικού πρόσβασης"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Παραγωγή"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Αλλαγή Κωδικού Πρόσβασης"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Περισσότερα"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Εμφάνιση Πίνακα"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Απόκρυψη Πίνακα"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Προβολή κρυφών αντικειμένων δέντρου πλοήγησης."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Σύνδεσμος με τον βασικό πίνακα"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Αποσύνδεση από τον βασικό πίνακα"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Για να φιλτράρετε όλες τις βάσεις δεδομένων στον διακομιστή, πατήστε το "
"Enter μετά τον όρο αναζήτησης"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Για να φιλτράρετε όλα τα %s στη βάση δεδομένων, πατήστε το Enter μετά τον "
"όρο αναζήτησης"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "πίνακες"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "προβολές"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "διαδικασίες"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "συμβάντα"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "συναρτήσεις"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "Η αιτούμενη σελίδα δεν βρέθηκε στο ιστορικό, ίσως έληξε."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2506,28 +2549,28 @@ msgstr ""
"εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", τελευταία έκδοση:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "ενημερωμένο"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Δημιουργία προβολής"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Αποστολή Αναφοράς Σφάλματος"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Υποβολή Αναφοράς Σφάλματος"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2535,21 +2578,21 @@ msgstr ""
"Ένα ανεπανόρθωτο σφάλμα έχει συμβεί. Θέλετε να στείλετε μια αναφορά "
"σφάλματος;"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Αλλαγή Ρυθμίσεων Αναφοράς"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Εμφάνιση Λεπτομερειών Αναφοράς"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr "Η εξαγωγή σας ήταν ανεπιτυχής, λόγω χαμηλού χρονικού ορίου στην PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2559,58 +2602,58 @@ msgstr ""
"Κατά την υποβολή ορισμένα πεδία ίσως αγνοηθούν λόγω της ρύθμισης της PHP "
"max_input_vars."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Ανιχνεύτηκαν ορισμένα σφάλματα στο διακομιστή!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Δείτε στο κάτω μέρος αυτού του παραθύρου."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Παράληψη Όλων"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr "Σύμφωνα με τις ρυθμίσεις σας, υποβάλλονται άμεσα, κάντε υπομονή."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Επανεκτέλεση αυτού του ερώτηματος ξανά;"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Θέλετε πραγματικά να διαγράψετε αυτό το σελιδοδείκτη;"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr "Κάποιο σφάλμα συνέβει κατά τη λήψη πληροφοριών αποσφαλμάτωσης SQL."
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "%s ερωτήματα εκτελέστηκαν %s φορές σε %s δευτερόλεπτα."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr "%s επιχείρημα(τα) πέρασαν"
-#: js/messages.php:594
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Προβολή επιχειρημάτων"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Απόκρυψη επιχειρημάτων"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr "Χρόνος που παρήλθε:"
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2621,331 +2664,331 @@ msgstr ""
"σωστά για σας. Στο Safari, τέτοιο πρόβλημα συνήθως συμβαίνει λόγω "
"ενεργοποίησης της «Κατάστασης Ιδιωτικής Πλοήγησης»."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Προηγούμενο"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Επόμενο"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Σήμερα"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Ιανουαρίου"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Φεβρουαρίου"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Μαρτίου"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Απριλίου"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Μαΐου"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Ιουνίου"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Ιουλίου"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Αυγούστου"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Σεπτεμβρίου"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Οκτωβρίου"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Νοεμβρίου"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Δεκεμβρίου"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Ιαν"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Φεβ"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Μαρ"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Απρ"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Μάη"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Ιουν"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Ιουλ"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Αυγ"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Σεπ"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Οκτ"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Νοε"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Δεκ"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Κυριακή"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Δευτέρα"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Τρίτη"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Τετάρτη"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Πέμπτη"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Παρασκευή"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Σάββατο"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Κυρ"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Δευ"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Τρί"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Τετ"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Πέμ"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Παρ"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Σάβ"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Κυ"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Δε"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Τρ"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Τε"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Πε"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Πα"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Σα"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "ημερολόγιο-μήνας-έτος"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "κανένα"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Ώρα"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Λεπτό"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Δευτερόλεπτο"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Αυτό το πεδίο είναι υποχρεωτικό"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Διορθώστε αυτό το πεδίο"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Εισάγετε μια έγκυρή ηλεκτρονική διεύθυνση"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Εισάγετε έναν έγκυρο URL"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Εισάγετε μια έγκυρη ημερομηνία"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Εισάγετε μια έγκυρη ημερομηνία (ISO)"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Εισάγετε έναν έγκυρο αριθμό"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Εισάγετε μόνο ψηφία"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Εισάγετε την ίδια τιμή ξανά"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Εισάγετε όχι περισσότερους από {0} χαρακτήρες"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Εισάγετε τουλάχιστον {0} χαρακτήρες"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Εισάγετε μια τιμή μήκους μεταξύ {0} και {1} χαρακτήρες"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Εισάγετε εισάγετε μια τιμή μεταξύ {0} και {1}"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Εισάγετε μια τιμή μικρότερη ή ίση με {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Εισάγετε μια τιμή μεγαλύτερη ή ίση με {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Εισάγετε μια έγκυρη ημερομηνία ή ώρα"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3020,18 +3063,18 @@ msgstr "ανά ώρα"
msgid "per day"
msgstr "ανά ημέρα"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Το υπαρχον αρχείο ρυθμίσεων (%s) δεν είναι αναγνώσιμο."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Εσφαλμένα δικαιώματα στο αρχείο ρυθμίσεων, δεν πρέπει να είναι καθολικά "
"εγγράψιμο!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Μέγεθος γραμματοσειράς"
@@ -3050,7 +3093,7 @@ msgid "Requery"
msgstr "Επανερώτημα"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3228,7 +3271,7 @@ msgid "Count:"
msgstr "Μέτρηση:"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3401,7 +3444,7 @@ msgstr "Ενημέρωση σελιδοδείκτη"
msgid "Delete bookmark"
msgstr "Διαγραφή σελιδοδείκτη"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3409,19 +3452,19 @@ msgstr ""
"Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί "
"σωστά)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Ο διακομιστής δεν αποκρίνεται."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Λεπτομέρειες…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
@@ -3495,6 +3538,16 @@ msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα
msgid "Inside tables:"
msgstr "Μέσα στους πίνακες:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Επιλογή όλων"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Αποεπιλογή όλων"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Εσωτερικό πεδίο:"
@@ -3548,7 +3601,7 @@ msgid "All"
msgstr "Όλα"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Αριθμός εγγραφών:"
@@ -3850,7 +3903,7 @@ msgstr ""
"απομακρυνθεί."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Διακομιστής"
@@ -3861,34 +3914,13 @@ msgstr "Διακομιστής"
msgid "View"
msgstr "Προβολή"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Δομή"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "Κώδικας SQL"
@@ -3983,8 +4015,8 @@ msgstr "Κεντρικές στήλες"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Βάσεις δεδομένων"
@@ -4087,7 +4119,7 @@ msgid "Recent"
msgstr "Πρόσφατα"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Αγαπημένοι πίνακες"
@@ -4157,16 +4189,6 @@ msgstr "Ενώσεις"
msgid "Sorting"
msgstr "Ταξινόμηση"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Πίνακες"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Συντονιστής κινήσεων"
@@ -4741,7 +4763,7 @@ msgstr "Μέγιστο μέγεθος: %s%s"
msgid "MySQL said: "
msgstr "Η MySQL επέστρεψε το μήνυμα: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Ανάλυση SQL"
@@ -4758,7 +4780,7 @@ msgstr "Ανάλυση Εξήγησης στο %s"
msgid "Without PHP Code"
msgstr "χωρίς κώδικα PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
@@ -4873,17 +4895,6 @@ msgstr "Χρήση αυτής της τιμής"
msgid "Rows"
msgstr "Εγγραφές"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Δεδομένα"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5049,7 +5060,7 @@ msgstr "Διακομιστής %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5061,24 +5072,24 @@ msgstr ""
"το phpMyAdmin χρησιμοποιεί την προεπιλεγμένη ζώνη ώρας του διακομιστή της "
"βάσης δεδομένων."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "προσπάθεια επανεγγραφής GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "δυνατή αξιοποίηση"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "ανιχνεύτηκε αριθμητικό κλειδί"
@@ -5302,7 +5313,7 @@ msgid "Set value: %s"
msgstr "Ορισμός τιμής: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Επαναφορά προεπιλεγμένης τιμής"
@@ -5784,7 +5795,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Μέγιστος χρόνος εκτέλεσης"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "Χρήση δήλωσης %s"
@@ -5793,7 +5804,7 @@ msgstr "Χρήση δήλωσης %s"
msgid "Save as file"
msgstr "Αποστολή"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Σύνολο χαρακτήρων αρχείου"
@@ -5820,15 +5831,15 @@ msgstr "Συμπίεση"
msgid "Put columns names in the first row"
msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γραμμή"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Στήλες που περικλείονται με"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής"
@@ -5844,14 +5855,14 @@ msgstr "Αντικατάσταση τιμής NULL με"
msgid "Remove CRLF characters within columns"
msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στις στήλες"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Στήλες που τελειώνουν με"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Γραμμές που τελειώνουν με"
@@ -5921,7 +5932,7 @@ msgid "Save on server"
msgstr "Αποθήκευση στο διακομιστή"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Αντικατάσταση αρχείου(ων)"
@@ -5938,8 +5949,8 @@ msgstr "Προσθήκη τιμής AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των πινάκων και των στηλών"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Κατάσταση συμβατότητας SQL"
@@ -6055,15 +6066,15 @@ msgid "Customize browse mode."
msgstr "Προσαρμοσμένη κατάσταση αναζήτησης."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Προσαρμογή προεπιλεγμένων επιλογών."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6091,7 +6102,7 @@ msgstr "Προεπιλογές εξαγωγής"
msgid "Customize default export options."
msgstr "Προσαρμογή προεπιλεγμένων επιλογών εξαγωγής."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Χαρακτηριστικά"
@@ -6136,40 +6147,52 @@ msgstr "Πίνακας πλοήγησης"
msgid "Customize appearance of the navigation panel."
msgstr "Προσαρμογή εμφάνισης του πίνακα πλοήγησης."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Πίνακας πλοήγησης"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Προσαρμογή πίνακα πλοήγησης"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Διακομιστές"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Επιλογές προβολής διακομιστών."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Επιλογές προβολής πινάκων."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Βασικός πίνακας"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Excel"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Άλλες ρυθμίσεις πυρήνα"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Ρυθμίσεις που δεν ανήκουν κάπου αλλού."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Τίτλοι σελίδας"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6178,11 +6201,11 @@ msgstr ""
"[doc@faq6-27]τεκμηρίωση[/doc] για μαγικά κείμενα που μπορούν να "
"χρησιμοποιηθούν για ειδικές τιμές."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Ασφάλεια"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6190,23 +6213,23 @@ msgstr ""
"Σημειώστε ότι το phpMyAdmin είναι απλά ένα περιβάλλον εργασίας και τα "
"χαρακτηριστικά του δεν περιορίζουν τη MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Βασικές ρυθμίσεις"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Πιστοποιίηση"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Ρυθμίσεις πιστοποίησης."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Προσαρμογή διακομιστή"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6214,15 +6237,15 @@ msgstr ""
"Προχωρημένη ρύθμιση διακομιστή, μην αλλάξετε αυτές τις ρυθμίσεις εκτός και "
"αν ξέρετε που παραπέμπουν."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Εισάγετε παραμέτρους σύνδεσης διακομιστή."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Χώρος αποθήκευση ρυθμίσεων"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6232,11 +6255,11 @@ msgstr ""
"χαρακτηριστικά. Δείτε την [doc@linked-tables]υποδομή συνδεδεμένων πινάκων[/"
"doc] στην τεκμηρίωση."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Παρακολούθηση αλλαγών"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6244,112 +6267,112 @@ msgstr ""
"Η παρακολούθηση των αλλαγών έγινε στη βάση δεδομένων. Απαιτεί το χώρο "
"αποθήκευσης ρυθμίσεων του phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Προσαρμογή επιλογών εξαγωγής"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Προσαρμογή επιλογών εισαγωγής"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Προσαρμογή πίνακα πλοήγησης"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Προσαρμογή βασικού πίνακα"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Ερωτήματα SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Χώρος Ερωτήματος SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Προσαρμογή εμφανιζόμενων συνδέσμων στους χώρους ερωτημάτων SQL."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Ρυθμίσεις ερωτημάτων SQL."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Εκκίνηση"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Προσαρμογή σελίδας εκκίνησης."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Δομή βάσης δεδομένων"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Επιλέξτε ποιες λεπτομέρειες θα προβάλονται στη δομή της βάσης δεδομένων "
"(λίστα πινάκων)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Δομή πίνακα"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Ρυθμίσεις για τη δομή του πίνακα (λίστα στηλών)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Καρτέλες"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Επιλέξτε πως θα λειτουργούν οι καρτέλες."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Προβολή σχεσιακού σχήματος"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Μέγεθος χαρτιού"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Πεδία κειμένου"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Προσαρμογή πεδίων εισαγωγής κειμένου."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Κείμενο Texy"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Προσαρμογή προεπιλεγμένων επιλογών"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Προειδοποιήσεις"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
"Απενεργοποίηση ορισμένων προειδοποιήσεων που εμφανίζονται στο phpMyAdmin."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6357,15 +6380,15 @@ msgstr ""
"Ενεργοποιήστε τη συμπίεση [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] για "
"τις λειτουργίες εισαγωγής και εξαγωγής."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Επιπλέον παράμετροι για την iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6373,11 +6396,11 @@ msgstr ""
"Αν ενεργοποιηθεί, το phpMyAdmin συνεχίζει να υπολογίζει ερωτήματα πολλαπλών "
"δηλώσεων ακόμα και αν ένα από τα ερωτήματα αποτύχει."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Παράβλεψη σφαλμάτων πολλαπλών δηλώσεων"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6388,25 +6411,25 @@ msgstr ""
"την εισαγωγή μεγάλων αρχείων, αν και μπορεί να μπορεί να διακόψει τις "
"διαδικασίες."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Μερική εισαγωγή: να επιτρέπεται η διακοπή"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Να μην γίνετια ακύρωση σε σφάλμα INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr "Προσθήκη ΕΝΗΜΕΡΩΣΗΣ ΣΕ ΔΙΠΛΟ ΚΛΕΙΔΙ"
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr "Ενημέρωση δεδομένων όταν βρεθούν διπλά κλειδιά στην εισαγωγή"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6414,69 +6437,69 @@ msgstr ""
"Προεπιλεγμένη μορφή; να ληφθεί υπόψη ότι αυτή η λίστα εξαρτάται από την "
"τοποθεσία (βάση δεδομένων, πίνακας) και ότι μόνο η SQL είναι πάντα διαθέσιμη."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Μορφή εισαχθέντος αρχείου"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Χρήση λέξης-κλειδί LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Ονόματα στήλης στην πρώτη γραμμή"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Να μην γίνει εισαγωγή άδειων γραμμών"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Προσθήκη νομισμάτων (€5,00 αντί 5,00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (12.00% αντί .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Αριθμός ερωτημάτων που θα παραβλεφθούν από την αρχή."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Μερική εισαγωγή: παράβλεψη ερωτημάτων"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Να μην γίνεται AUTO_INCREMENT για μηδενικές τιμές"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Αρχική κατάσταση κυλυομένων"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Πόσες γραμμές μπορούν να εισαχθούν μονομιάς."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Αριθμός εισαχθέντων γραμμών"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Μέγιστος αριθμός χαρακτήρων που φαίνεται σε μη αριθμητική στήλη στην προβολή "
"φυλλομετρητή."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Όριο χαρακτήρων στήλης"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6487,11 +6510,11 @@ msgstr ""
"διακομιστή. Ορίζοντάς το σε FALSE είναι εύκολο να ξεχάσετε να αποσυνδεθείτε "
"από άλλους διακομιστές όταν συνδέεστε σε πολλούς."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Διαγραφή όλων των cookies με την αποσύνδεση"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6499,11 +6522,11 @@ msgstr ""
"Ορίζει αν η προηγούμενη σύνδεση πρέπει να επανακληθεί ή όχι σε κατάσταση "
"επικύρωσης [kbd]cookie[/kbd]."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Επανάκληση ονόματος χρήστη"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6515,50 +6538,50 @@ msgstr ""
"για την τρέχουσα συνεδρία και θα διαγραφεί μόλις κλείσετε τον φυλλομετρητή. "
"Αυτό προτείνεται για μη αξιόπιστα περιβάλλοντα."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Αποθήκευση cookie σύνδεσης"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Ορίστε χρονικά (σε δευτερόλεπτα) την ισχύ ενός cookie σύνδεσης."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Εγκυρότητα cookie σύνδεσης"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Διπλό μέγεθος του textarea για στήλες LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Μεγαλύτερο textarea για LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Μέγιστος αριθμός χαρακτήρων όταν προβάλεται ένα ερώτημα SQL."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Μέγιστο μήκος προβολής SQL"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Οι χρήστες δεν μπορούν να ορίσουν μεγαλύτερη τιμή"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
"Μέγιστος αριθμός βάσεων δεδομένων που θα προβάλονται στη λίστα βάσεων "
"δεδομένων."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Μέγιστος αριθμός βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6566,11 +6589,11 @@ msgstr ""
"Ο αριθμός των αντικειμένων που μπορούν να προβληθούν σε κάθε σελίδα στο "
"πρώτο επίπεδο του δέντρου πλοήγησης."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Μέγιστος αριθμός αντικειμένων στο πρώτο επίπεδο"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6578,11 +6601,11 @@ msgstr ""
"Ο αριθμός των αντικειμένων που μπορούν να προβληθούν σε κάθε σελίδα στο "
"δέντρο πλοήγησης."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Μέγιστος αριθμός αντικειμένων στον κλάδο"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6591,19 +6614,19 @@ msgstr ""
"αποτέλεσμα. Αν το αποτέλεσμα περιέχει περισσότερες γραμμές, θα εμφανίζονται "
"σύνδεσμοι «Προηγούμενο» και «Επόμενο»."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Μέγιστος αριθμός γραμμών για προβολή"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Μέγιστος αριθμός πινάκων"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6611,44 +6634,44 @@ msgstr ""
"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. "
"[kbd]32M[/kbd] ([kbd]0[/kbd] για απεριόριστη)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Όριο μνήμης"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"Στον πίνακα πλοήγησης, αντικαθιστά το δέντρο της βάσης δεδομένων με έναν "
"επιλογέα"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Προβολή πλοήγησης βάσεων δεδομένων ως δέντρο"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Σύνδεση με τον βασικό πίνακα επισημαίνοντας την τρέχουσα βάση δεδομένων ή "
"πίνακα."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Προβολή λογοτύπου στον πίνακα πλοήγησης."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Προβολή λογοτύπου"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
"Ο Σϋνδεσμος URL όπου θα τοποθετηθεί στο λογότυπο στον πίνακα πλοήγησης."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Διεύθυνση URL συνδέσμου λογοτύπου"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6656,27 +6679,27 @@ msgstr ""
"Ανοίγει τη συνδεδεμένη σελίδα στο κύριο παράθυρο ([kbd]main[/kbd]) ή σε νέο "
"([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Προορισμός συνδέσμου λογοτύπου"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Προβολή επιλογής διακομιστή επάνω στον πίνακα πλοήγησης."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Προβολή επιλογής διακομιστών"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Προορισμός για εικονίδιο γρήγορης πρόσβασης"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Προορισμός για δεύτερο εικονίδιο γρήγορης πρόσβασης"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6684,15 +6707,15 @@ msgstr ""
"Ορίζει τον ελάχιστο αριθμό αντικειμένων (πίνακες, προβολές, ρουτίνες και "
"συμβάντα) για προβολή σε πλαίσιο φίλτρου."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Ελάχιστος αριθμός αντικειμένων για προβολή του πλαισίου φίλτρου"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Ελάχιστος αριθμός πινάκων για προβολή στο πλαίσιο φίλτρου πίνακα"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6700,110 +6723,169 @@ msgstr ""
"Ομαδοποιήση αντικειμένων στο δέντρο πλοήγησης (προσδορίζεται από το "
"διαχωριστικό στις Βάσεις Δεδομένων και τους Πίνακες παραπάνω)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Ομαδοποίηση αντικειμένων στο δέντρο"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Κείμενο που διαχωρίζει τις βάσεις δεδομένων σε διαφορετικά επίπεδα."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Διαχωριστικό δέντρου βάσης δεδομένων"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Κείμενο που διαχωρίζει τους πίνακες σε διαφορετικά επίπεδα."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Διαχωριστικό δέντρου πινάκων"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Μέγιστο βάθος δέντρου πίνακα"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Επισήμανση διακομιστή με τον δείκτη του ποντικιού."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Ενεργοποίηση επισήμανσης"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"Αν θα προσφέρεται η πιθανότητα επέκτασης του δέντρου στον πίνακα πλοήγησης."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Ενεργοποίηση επέκτασης δέντρου πλοήγησης"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Εμφάνιση/Απόκρυψη λίστας πινάκων"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"Αν θα προσφέρεται η πιθανότητα επέκτασης του δέντρου στον πίνακα πλοήγησης."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Εμφάνιση εκδόσεων"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Προβολή πλοήγησης βάσεων δεδομένων ως δέντρο"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Εμφάνιση πεδίων συναρτήσεων"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Εμφάνιση διεργασιών"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Εμφάνιση εκδόσεων"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Προβολή πλοήγησης βάσεων δεδομένων ως δέντρο"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Μέγιστος αριθμός πρόσφατα χρησιμοποιημένων πινάκων. ορίστε το σε 0 για "
"απενεργοποιήση."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
"Μέγιστος αριθμός αγαπημένων πινάκων. ορίστε το σε 0 για απενεργοποιήση."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Πρόσφατα χρησιμποιημένοι πίνακες"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Αυτοί είναι οι σύνδεσμοι Επεξεργασία, Αντιγραφή και Διαγραφή."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
"Αν θα προβάλονται σύνδεσμοι εγγραφής ακόμα και κατά την απουσία μοναδικού "
"κλειδιού."
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr "Πρόβολη συνδέσμων εγγραφών πάντα"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
"Χρήση φυσικής ταξινόμησης για την ταξινόμηση ονομάτων πινάκων και βάσεων "
"δεδομένων."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Φυσική ταξινόμηση"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Χρήση μόνο εικονιδίων, μόνο κειμένου ή και τα δύο."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Γραμμή πλοήγησης πίνακα"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Χρήση εξαγόμενου GZip buffering για αυξημένη ταχύτητα σε μεταφορές HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Εξαγόμενο GZip buffering"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6811,19 +6893,19 @@ msgstr ""
"[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για στήλες τύπου TIME, DATE, "
"DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Προεπιλεγμένη ταξινόμηση"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Χρήση εξαναγκασμένων συνδέσεων στις βάσεις δεδομένων MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Επιμένουσες συνδέσεις"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6833,11 +6915,11 @@ msgstr ""
"λεπτομερούς δομής της βάσης δεδομένων, αν κάποιο από τους απαραίτητους "
"πίνακες για την αποθήκευση ρυθμίσεων του phpMyAdmin δεν βρεθεί."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Λείπουν πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6845,11 +6927,11 @@ msgstr ""
"Απενεργοποιήση της προεπιλεγμένης προειδοποιησης που εμφανίζεται αν "
"ανιχνευτεί διαφορά μεταξύ της βιβλιοθήκης και του διακομιστή MySQL."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Προειδοποίηση διαφοράς διακομιστή/βιβλιοθήκης"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6857,27 +6939,27 @@ msgstr ""
"Απενεργοποiήστε την προεπιλεγμένη προειδοποίηση που εμφανίζεται στη σελίδα "
"Δομής, αν τα ονόματα στηλών είναι δεσμευμένες λέξεις της MySQL."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Προειδοποίηση δεσμευμένης λέξης MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Πως θα εμφανίζονται οι καρτέλες μενού"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Πως θα εμφανίζονται διάφοροι σύνδεσμοι ενεργιών"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Προστασία δυαδικών στηλών"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6887,126 +6969,126 @@ msgstr ""
"ρυθμίσεων phpMyAdmin). Αν απενεργοποιηθεί, λειτουργούν ρουτίνες JS για "
"προβολή του ιστορικού ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Μόνιμο ιστορικό ερωτημάτων"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Πόσα ερωτήματα παραμένουν στο ιστορικό."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Μέγεθος ιστορικού ερωτημάτων"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Επιλέξτε ποιες συναρτήσεις θα χρησιμοποιηθούν για μετατροπή συνόλων "
"χαρακτήρων."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Μηχανή επανακωδικοποίησης"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
"Όταν μεταικινήστε μταξύ πινάκων, η ταξινόμηση για κάθε πίανακα "
"απομνημονεύεται."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Απομνημόνευση ταξινόμησης πινάκων"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Προεπιλεγμένη ταξινόμηση για πίνακες με πρωτεύον κλειδί."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Προεπιλεγμένη ταξινόμηση πρωτεύοντος κλειδιού"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Επανάληψη κεφαλίδων κάθε Χ κελιά. Το [kbd]0[/kbd] απενεργοποιεί το "
"χαρακτηριστικό."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Επανάληψη κεφαλίδων"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Επεξεργασία καννάβου: πρόκληση δράσης"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Σχεσιακή προβολή"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Για Επιλογές προβολής"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Επεξεργασία καννάβου: Αποθήκευση όλων των επεξεργασμένων κελιών μαζί"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Ο φάκελος στον διακομιστή όπου οι εξαγωγές μπορούν να αποθηκευτούν."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Φάκελος αποθήκευσης"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Σειρά πιστοποίησης φιλοξενητή"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Αφήστε κενό για προεπιλογές."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Κανόνες πιστοποίησης φιλοξενητή"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Δικαίωμα συνδέσεων χωρίς κωδικό πρόσβασης"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Δικαίωμα ριζικής σύνδεσης"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Ζώνη ώρας συνεδρίας"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
"Ορίζει την ενεργή ζώνη ώρας, πιθανά διαφορετική από αυτή του διακομιστή σας"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Το βασίλειο του HTTP Basic Auth εμφανίζεται όταν γίνεται πιστοποίηση HTTP."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "Βασίλειο HTTP"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7016,19 +7098,19 @@ msgstr ""
"υλικού SweKey[/a] (δεν βρίσκεται στο ριζικό φάκελο του εγγράφου; "
"προτείνεται: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "Αρχείο ρυθμίσεων SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Μέθοδος επικύρωσης για χρήση."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Τύπος επικύρωσης"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7036,11 +7118,11 @@ msgstr ""
"Αφήστε κενό αν δεν υπάρχει υποστήριξη [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]σελιδοδείκτη[/a], προτείνεται: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Πίνακας σελιδοδεικτών"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7048,33 +7130,33 @@ msgstr ""
"Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, προτείνεται: "
"[kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Πίνακας πληροφοριών στήλης"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Συνδεση συμπίεσης στο διακομιστή MySQL."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Σύνδεση συμπίεσης"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Πως να συνδεθείτε στο διακομιστή, κρατήστε το [kbd]tcp[/kbd] αν δεν είστε "
"σίγουρος/η."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Τύπος σύνδεσης"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Έλεγχος κωδικού πρόσβασης χρήστη"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7083,11 +7165,11 @@ msgstr ""
"Περισσότερες πληροφορίες είναι διαθέσιμες στο [a@http://wiki.phpmyadmin.net/"
"pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Έλεγχος χρήστη"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7095,11 +7177,11 @@ msgstr ""
"Ένας εναλλακτικός φιλοξενητής για αποθήκευση των ρυθμίσεων, αφήστε το κενό "
"για χρήση του ήδη ορισμένου."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Έλεγχος φιλοξηνητή"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7109,15 +7191,15 @@ msgstr ""
"αποθήκευση των ρυθμίσεων, αφήστε το κενό για χρήση της προεπιλεγμένης θύρας "
"ή της ήδη ορισμένης θύρας αν το controlhost ισούται με το φιλοξενητή."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Θύρα ελέγχου"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Απόκρυψη βάσεων δεδομένων που ταιριάζουν την κανονική έκφραση (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7126,15 +7208,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Απενεργοποίηση χρήσης του INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Απόκρυψη βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7142,23 +7224,23 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: "
"[kbd]pma_history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Πίνακας ιστορικού ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Ονομασία θέσης όπου εκτελείται ο διακομιστής MySQL."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Ονομασία θέσης διακομιστή"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Διεύθυνση URL αποσύνδεσης"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7166,15 +7248,15 @@ msgstr ""
"Περιορίζει τον αριθμό των προτιμήσεων πινάκων που αποθηκεύονται στη βάση "
"δεδομένων, οι παλαιές εγγραφές απομακρύνονται αυτόματα."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Μέγιστος αριθμός προτιμήσεων πινάκων για αποθήκευση"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Πίνακας αποθηκευμένων αναζητήσεων QBE"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7182,11 +7264,11 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη αποθηκευμένων αναζητήσεων QBE, προτείνεται: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Πίνακας κεντρικών στηλών"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7194,15 +7276,15 @@ msgstr ""
"Αφήστε το κενό για να μην υποστηρίζονται κεντρικές στήλες. Προτείνεται: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Σύνδεση χωρίς κωδικό πρόσβασης"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7212,30 +7294,30 @@ msgstr ""
"κάθετο χρησιμοποιήστε τα ως κανονικούς χαρακτήρες, π.χ. χρησιμοποιήστε "
"[kbd]'my\\_db[/kbd]' και όχι [kbd]'my_db[/kbd]'."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Εμφάνιση μόνο των βάσεων δεδομένων από λίστα"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Αφήστε το άδειο αν δεν χρησιμοποιείτε ρύθμισμένη επικύρωση."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύρωση"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "Σχέδιο PDF: πίνακας σελίδων"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7246,21 +7328,21 @@ msgstr ""
"a] για λεπτομέρειες. Αφήστε κενό για να μην υπάρχει υποστήριξη. Προτείνεται: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Όνομα βάσης δεδομένων"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Θύρα που αποκρίνεται ο διακομιστής MySQL. Αφήστε το άδειο για προεπιλογή."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Θύρα διακομιστή"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7268,11 +7350,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμους» πρόσφατα χρησιμοποιημένους πίνακες μεταξύ "
"συνεδριών, προτείνεται: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Πρόσφατα χρησιμοποιημένος πίνακας"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7280,11 +7362,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμους» αγαπημένους πίνακες μεταξύ συνεδριών, "
"προτείνεται: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Πίνακας αγαπημένων"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7293,11 +7375,11 @@ msgstr ""
"pma/relation]συνδέσμων-συσχετίσεων[/a], προτείνεται: [kbd]pma__relation[/"
"kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Πίνακας συσχετίσεων"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7305,33 +7387,33 @@ msgstr ""
"Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους "
"επικύρωσης[/a] για ένα παράδειγμα."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Ονομάσία συνεδρίας σύνδεσης"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Διεύθυνση URL σύνδεσης"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Η υποδοχή στην οποία ο διακομιστής MySQL αποκρίνεται. Αφήστε το κενό για "
"προεπιλογή."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Υποδοχή διακομιστή"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Ενεργοποιήση SSL για σύνδεση στο διακομιστή MySQL."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Χρήση SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7339,11 +7421,11 @@ msgstr ""
"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Σχεδιαστής και σχέδιο PDF: συντεταγμένες πίνακα"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7351,11 +7433,11 @@ msgstr ""
"Ο πίνακας που περιγράφει τις προβαλλόμενες στήλες - αφήστε το κενό για να "
"μην υποστηρίζεται, προτείνεται: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Πίνακας προβολής στηλών"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7363,11 +7445,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμο» περιβάλλον εργασίας ρυθμίσεων πινάκων μεταξύ "
"συνεδριών, προτείνεται: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Πίνακας προτιμήσεων UI"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7375,11 +7457,11 @@ msgstr ""
"Όταν δηλωθεί DROP DATABASE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην "
"καταγραφή κατά τη δημιουργία βάσης δεδομένων."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Προσθήκη της εντολής DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7387,11 +7469,11 @@ msgstr ""
"Όταν δηλωθεί DROP TABLE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην "
"καταγραφή κατά τη δημιουργία πίνακα."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Προσθήκη DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7399,21 +7481,21 @@ msgstr ""
"Όταν δηλωθεί DROP VIEW IF EXISTS θα προστεθεί ως πρώτη γραμμή στην καταγραφή "
"κατά τη δημιουργία προβολής."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Προσθήκη DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Ορίζει τη λίστα των δηλώσεων που χρησιμοποιεί η αυτόματη δημιουργία για νέες "
"εκδόσεις."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Δηλώσεις προς παρακολούθηση"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7421,11 +7503,11 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Πίνακας ιστορικού παρακολούθησης ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7433,11 +7515,11 @@ msgstr ""
"Αν ο μηχανισμός παρακολούθησης δημιουργεί εκδόσεις για πίνακες και προβολές "
"αυτόματα."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Αυτόματη δημιουργία εκδόσεων"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7445,11 +7527,11 @@ msgstr ""
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστη"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7459,11 +7541,11 @@ msgstr ""
"ενεργοποίηση του χαρακτηριστικού μενού ρυθμίσεων. Αφήνοντας ένα από τα δύο "
"κενό απενεργοποιείται το χαρακτηριστικό, προτείνεται: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Πίνακας χρηστών"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7474,11 +7556,11 @@ msgstr ""
"κενό απενεργοποιείται το χαρακτηριστικό, προτείνεται: [kbd]pma__usergroups[/"
"kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Πίνακας ομάδων χρηστών"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7486,15 +7568,15 @@ msgstr ""
"Αφήστε το κενό για απενεργοποίηση του χαρακτηριστικού προσαρμόσιμων μενού, "
"προτείνεται: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Πίνακας κρυφών αντικειμένων πλοήγησης"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Χρήστης για ρυθμισμένη επικύρωση"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7502,20 +7584,20 @@ msgstr ""
"Μια φιλοχρηστική περιγραφή αυτού του διακομιστή. Αφήστε το κενό για να "
"εμφανίζεται το όνομα."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Φιλοχρηστικό όνομα διακομιστή"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (των εγγραφών)»."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Δικαίωμα προβολή όλων των γραμμών"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7526,57 +7608,57 @@ msgstr ""
"ρυθμίσεων και αυτό δεν περιορίζει τη δυνατότητα άμεσης εκτέλεσης της ίδιας "
"εντολής."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Εμφάνιση φόρμας αλλαγής κωδικού πρόσβασης"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Εμφάνιση φόρμας δημιουργίας βάσης δεδομένων"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης που εμφανίζει τα σχόλια για όλους του "
"πίνακες."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr "Προβολή σχολίων πίνακα"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης εμφανίζοντας τη χρονοσφραγίδα Δημιουργίας "
"για όλους τους πίνακες."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Προβολή χρονοσφραγίδας δημιουργίας"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης που θα εμφανίζει τη χρονοσφραγίδα Τελευταίας "
"ενημέρωσης για όλους τους πίνακες."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Εμφάνιση χρονοσφραγίδας Τελευταίας ενημερώσης"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Εμφάνιση ή απόκρυψη μιας στήλης που θα εμφανίζει τη χρονοσφραγίδα Τελευταίου "
"ελέγχου για όλους τους πίνακες."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Προβολή χρονοσφραγίδας τελευταίου ελέγχου"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7584,27 +7666,27 @@ msgstr ""
"Ορίζει αν θα εμφανίζονται οι τύποι των πεδίων σε κατάσταση επεξεργασίας/"
"εισαγωγής."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Εμφάνιση τύπων πεδίου"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Προβολή των πεδίων συναρτήσεων σε κατάσταση επεξεργασίας εισαγωγής."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Εμφάνιση πεδίων συναρτήσεων"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Αν θα εμφανίζεται επεξήγηση ή όχι."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Εμφάνιση επεξήγησης"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7612,57 +7694,57 @@ msgstr ""
"Εμφανίζει σύνδεσμο για την τεκμηρίωση της συνάρτησης [a@http://php.net/"
"manual/function.phpinfo.php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Εμφάνιση συνδέσμου phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Εμφάνιση λεπτομερών πληροφοριών διακομιστή MySQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Ορίζει αν τα δημιουργημένα ερωτήματα SQL από το phpMyAdmin πρέπει να "
"προβάλονται."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Εμφάνιση ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Ορίζεται αν το ερώτημα πρέπει να παραμείνει στην οθόνη μετά την υποβολή του."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Διατήρηση παραθύρου ερωτήματος"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Δικαίωμα προβολής στατιστικών βάσης δεδομένων και πινάκων (π.χ. χρήση χώρου "
"στο δίσκο)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Εμφάνιση στατιστικών"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Επισήμανση χρησιμοποιημένων πινάκων και ενεργοποίηση της δυνατότητας "
"προβολής των βάσεων δεδομένων με κλειδωμένους πίνακες."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Παράβλεψη κλειδωμένων πινάκων"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7670,11 +7752,11 @@ msgstr ""
"Απενεργοποίηση της προεπιλεγμένης προειδοποίησης που εμφανίζεται στη βασική "
"σελίδα αν βρεθεί το Suhosin."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "προειδοποίηση Suhosin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7684,11 +7766,11 @@ msgstr ""
"σελίδα αν η τιμή της ρύθμισης PHP session.gc_maxlifetime είναι λιγότερο από "
"την τιμή του «LoginCookieValidity»."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Προειδοποίηση εγκυρότητας cookie σύνδεσης"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7696,11 +7778,11 @@ msgstr ""
"Το μέγεθος του textarea (στήλες) σε κατάσταση επεξεργασίας. Αυτή η τιμή "
"πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Στήλες textarea"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7708,33 +7790,33 @@ msgstr ""
"Το μέγεθος του textarea (γραμμές) σε κατάσταση επεξεργασίας. Αυτή η τιμή "
"πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Γραμμές textarea"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
"Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται μια βάση δεδομένων."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν δεν επιλέγεται τίποτα."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Προεπιλεγμένος τίτλος"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
"Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας διακομιστής."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας πίνακας."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7746,28 +7828,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) προερχόμενη από τη διεύθυνση 1.2.3.4:"
"[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Λίστα αξιόπιστων διευθύνσεων IP για να επιτρέπεται/απαγορεύεται"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
"Φάκελος στο διακομιστή όπου μπορείτε να αποστείλετε αρχεία για εισαγωγή."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Φάκελος αποστολής"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Επιτρέπει την αναζήτηση εντός ολόκληρης της βάσης δεδομένων."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Χρήση αναζήτησης βάσης δεδομένων"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7775,28 +7857,28 @@ msgstr ""
"Όταν απενεργοποιηθεί, οι χρήστες δεν μπορούν να ορίσουν καμιά από τις "
"παρακάτω επιλογές, ανεξάρτητα από την επιλογή στα δεξιά."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Έλεγχος για τελευταία έκδοση"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Ενεργοποιεί τον έλεγχο για τη τελευταία έκδοση στη κεντρική σελίδα του "
"phpMyAdmin."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Έλεγχος έκδοσης"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7809,11 +7891,11 @@ msgstr ""
"άμεση πρόσβαση στο διαδίκτυο. Η σύνταξη είναι: «όνομαδιακομιστή:"
"αριθμόςθύρας»."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Διεύθυνση διακομιστή"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7824,19 +7906,19 @@ msgstr ""
"Πιστοποίηση. Κανένας άλλος τύπος πιστοποίησης δεν υποστηρίζεται προς το "
"παρόν."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Όνομα χρήστη διακομιστή"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Ο κωδικός πρόσβασης για πιστοποίηση με τον διακομιστή."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Κωδικός πρόσβασης διακομιστή"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7844,36 +7926,36 @@ msgstr ""
"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Εισάγετε το δημόσιο κλειδί σας για τη βασική υπηρεσία reCaptcha σας."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Δημόσιο κλειδί για reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Εισάγετε το ιδιωτικό κλειδί σας για τη βασική υπηρεσία reCaptcha σας."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Ιδιωτικό κλειδί για reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
"Επιλέξτε την προεπιλεγμένη ενέργεια όταν αποστέλετε αναφορές σφάλματος."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Αποστολή αναφορών σφάλματος"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7881,11 +7963,11 @@ msgstr ""
"Τα ερωτήματα εκτελούνται πατώντας το Enter (αντί του Ctrl+Enter). Οι νέες "
"γραμμές θα εισαχθούν με το Shift+Enter."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Το Enter εκτελεί τα ερωτήματα στην κονσόλα"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7893,7 +7975,7 @@ msgstr ""
"Ενεργοποιεί την κατάσταση Μηδενικής Ρύθμισης που σας επιτρέπει να ρυθμίσετε "
"τους πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin αυτόματα."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Ενεργοποίηση κατάστασης Μηδενικής Ρύθμισης"
@@ -7919,44 +8001,44 @@ msgstr "Πιστοποίηση HTTP"
msgid "Signon authentication"
msgstr "Σειρά επικύρωσης"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV με χρήση LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Γρήγορο"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Προσαρμοσμένο"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Επιλογές εξαγωγής βάσης δεδομένων"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "Μορφή CSV για δεδομένα MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Έγγραφο Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ"
@@ -7987,7 +8069,7 @@ msgstr ""
"Χρησιμοποιείτε την επέκταση mysql που έχει αποσυρθεί στην phpMyAdmin. "
"Σκεφτείτε να εγκαταστήσετε την επέκταση mysqli."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
"Αδύνατη η φόρτωση προσθέτων σχήματος, για αυτό ελέξτε την εγκατάστασή σας!"
@@ -8054,7 +8136,7 @@ msgstr "Δημιουργία πίνακα"
msgid "Number of columns"
msgstr "Αριθμός στηλών"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Αδύνατη η φόρτωση προσθέτων εξαγωγής, για αυτό εξέξτε την εγκατάστασή σας!"
@@ -8098,11 +8180,11 @@ msgstr "Πίνακας(ες):"
msgid "Format:"
msgstr "Μορφοποίηση:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Επιλογές ορισμένης μορφής:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8110,52 +8192,52 @@ msgstr ""
"Μεταβείτε πιο κάτω για να συμπληρώσετε τις επιλογές για την επιλεγμένη μορφή "
"και αγνοήστε τις επιλογές για τις άλλες μορφές."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Μετατροπή κωδικοποίησης:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Εγγραφές:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Μετατροπή εγγραφής(ών)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Η εγγραφή θα ξεκινάει στο:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Μετατροπή όλων των γραμμών"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Εξαγόμενο:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Αποθήκευση στον διακομιστή στον φάκελο %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Πρότυπο ονόματος αρχείου:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "Το @SERVER@ θα γίνει το όνομα του διακομιστή"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", το @DATABASE@ θα γίνει το όνομα της βάσης δεδομένων"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8167,64 +8249,76 @@ msgstr ""
"και οι ακόλουθες μετατροπές: %3$s. Το υπόλοιπο κείμενο θα παραμείνει όπως "
"είναι. Δείτε τις %4$sΣΑΕ%5$s για λεπτομέρειες."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "χρησιμοποιήστε το για μελλοντικές εξαγωγές"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Σύνολο χαρακτήρων του αρχείου:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Συμπίεση:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "συμπίεση «zip»"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "συμπίεση «gzip»"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Προβολή εξαγόμενου ως κείμενο"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Εξαγωγή προβολών ως πίνακες"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Εξαγωγή κεφαλίδων πίνακα"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Μετονομασία εξαγόμενων βάσεων δεδομένων/πινάκων/στηλών"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Αποθήκευση εξαγόμενου σε αρχείο"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Αγνόηση πινάκων μεγαλύτερων από"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Επιλογή βάσης δεδομένων"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Επιλογή πίνακα"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Νέο όνομα βάσης δεδομένων"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Νέο όνομα πίνακα"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Παλαιό ονόμα στήλης"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Νέο ονόμα στήλης"
@@ -8855,7 +8949,7 @@ msgid "Create an index on %s columns"
msgstr "Δημιουργία ευρετηρίου σε %s στήλες"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Απόκρυψη"
@@ -8990,11 +9084,6 @@ msgstr "Από"
msgid "To"
msgstr "Προς"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Αποστολή"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Προσθήκη προθέματος πίνακα:"
@@ -9207,22 +9296,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Ένα σφάλμα συμβαίνει κατά τη φόρτωση της προβολής πλοήγησης"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Όνομα ομάδας:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Συμβάντα:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Συναρτήσεις:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Διαδικασίες:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Πίνακες:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Προβολές:"
@@ -9246,7 +9341,7 @@ msgstr "Ρυθμίσεις πίνακα πλοήγησης"
msgid "Reload navigation panel"
msgstr "Επαναφόρτωση πίνακα πλοήγησης"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9255,27 +9350,27 @@ msgstr ""
"επηρεάσουν την απόδοση. Λάβετε υπόψη σας να απενεργοποίησετε την ομοδοποίηση "
"αντικειμένων στον πίνακα πλοήγησης."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s αποτέλεσμα βρέθηκε"
msgstr[1] "%s αποτελέσματα βρέθηκαν"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Φιλτράρισμα βάσεων δεδομενων κατά όνομα ή κανονική έκφραση"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Εκκαθάριση γρήγορου φίλτρου"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Φιλτράρισμα κατά όνομα ή κανονική έκφραση"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Σύμπτηξη όλων"
@@ -9309,7 +9404,7 @@ msgstr "Νέα"
msgid "Database operations"
msgstr "Λειτουργίες βάσης δεδομένων"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Εμφάνιση κρυφών αντικειμένων"
@@ -10540,13 +10635,13 @@ msgstr "Ονόματα στηλών: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Μη έγκυρη παράμετρος στο εισαχθέν CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10555,13 +10650,13 @@ msgstr ""
"Ορίστηκε μη έγκυρη στήλη (%s)! Σιγουρευτείτε ότι τα ονόματα στηλών ορίζονται "
"σωστά, χωρίζονται με κόμμα δεν περιέχονται σε εισαγωγικά."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμμή %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Μη έγκυρο πλήθος στηλών στο εισαχθέν CSV στη γραμμή %d."
@@ -10953,47 +11048,47 @@ msgstr "Μορφοποιεί το κείμενο ως JSON με επισήμαν
msgid "Formats text as XML with syntax highlighting."
msgstr "Μορφοποιεί το κείμενο ως XML με επισήμανση της σύνταξης."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Σφάλμα: η συσχέτιση υπαρχει ήδη."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Έχει προστεθεί η συσχέτιση FOREIGN KEY."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Σφάλμα: Δεν μπόρεσε να προστεθεί η συσχέτιση FOREIGN KEY!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Σφάλμα: Ανύπαρκτο ευρετήριο στη(ις) στήλη(ες)."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Σφάλμα: Τα χαρακτηριστικά συσχέτισης είναι απεπεργοποιημένα!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Η εσωτερική συσχέτιση έχει προστεθεί."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Σφάλμα: Δεν μπόρεσε να προστεθεί η εσωτερική συσχέτιση!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Έχει απομακρυνθεί η συσχέτιση FOREIGN KEY."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Σφάλμα: Δεν μπόρεσε να απομακρυνθεί η συσχέτιση FOREIGN KEY!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Σφάλμα: Δεν μπόρεσε να απομακρυνθεί η εσωτερική συσχέτιση!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Η εσωτερική συσχέτιση έχει απομακρυνθεί."
@@ -11080,22 +11175,28 @@ msgstr "Αποθήκευση αναζητήσεων Ερώτημα-Ανά-Παρ
msgid "Managing Central list of columns"
msgstr "Διαχείριση Κεντρικής λίστας στηλών"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Απομνημόνευση ταξινόμησης πινάκων"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Γρήγορα βήματα για εγκατάσταση χαρακτηριστικών για προχωρημένους:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Δημιουργία των απαραίτητων πινάκων με το αρχείο %screate_tables.sql"
"code>."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Δημιουργήστε έναν χρήστη pma και δώστε πρόσβαση σε αυτούς του πίνακες."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11104,17 +11205,17 @@ msgstr ""
"(config.inc.php), για παράδειγμα ξεκινήστε με το αρχείο "
"config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο "
"ρυθμίσεων."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "χωρίς περιγραφή"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
@@ -11125,7 +11226,7 @@ msgstr ""
"οποιασδήποτε βάσης δεδομένων για να ορίσετε την αποθήκευση ρυθμίσεων του "
"phpMyAdmin εκεί."
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -11134,7 +11235,7 @@ msgstr ""
"%sΔημιουργία%s μιας βάσης δεδομένων με το όνομα «phpmyadmin» και εγκατάσταση "
"της αποθήκευσης ρυθμίσεων του phpMyAdmin εκεί."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@@ -11142,7 +11243,7 @@ msgstr ""
"%sΔημιουργία%s του τρέχοντος χώρου αποθήκευσης ρυθμίσεων του phpMyAdmin στην "
"τρέχουσα βάση δεδομένων."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11900,7 +12001,7 @@ msgstr "Δεν υπάρχουν συμβάντα για εμφάνιση."
msgid "Ignoring unsupported language code."
msgstr "Αγνόηση μη υποστηριζόμενου κωδικού γλώσσας."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Τρέχων διακομιστής:"
@@ -13778,9 +13879,6 @@ msgstr "Εμφάνιση ως κώδικά PHP"
#: libraries/sql.lib.php:1767
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
@@ -13791,9 +13889,6 @@ msgstr ""
#: libraries/sql.lib.php:1778
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, Edit, Copy "
"and Delete features may result in undesired behavior. %s"
@@ -16760,9 +16855,6 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα"
-#~ msgid "Show versions"
-#~ msgstr "Εμφάνιση εκδόσεων"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18125,9 +18217,6 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0"
#~ msgid "Reset"
#~ msgstr "Επαναφορά"
-#~ msgid "Show processes"
-#~ msgstr "Εμφάνιση διεργασιών"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Επαναφορά"
diff --git a/po/en_GB.po b/po/en_GB.po
index 0cabe61044..25c96737e9 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-03-02 14:11+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr "Click the drop-down arrow
to toggle column's visibility."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Show all"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2427,160 +2470,160 @@ msgstr ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "Original string"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Cancel"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Aborted"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "Import defaults"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "Log file threshold"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Select Tables"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"You can also edit most values
by double-clicking directly on them."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "You can also edit most values
by clicking directly on them."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Go to link:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Copy column name."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Right-click the column name to copy it to your clipboard."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Generate password"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generate"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Change Password"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "More"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Show Panel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Hide Panel"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Show hidden navigation tree items."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main panel"
msgid "Link with main panel"
msgstr "Customise main panel"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main panel"
msgid "Unlink from main panel"
msgstr "Customise main panel"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tables"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "Views"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Procedures"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "event"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Functions"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "The requested page was not found in the history, it may have expired."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2590,28 +2633,28 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", latest stable version:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "up to date"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Create view"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Send Error Report"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Submit Error Report"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2619,15 +2662,15 @@ msgstr ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Change Report Settings"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Show Report Details"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2635,7 +2678,7 @@ msgstr ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2644,432 +2687,432 @@ msgstr ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignore"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Show this query here again"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to delete the search \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "Do you really want to delete the search \"%s\"?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Executed queries"
msgid "%s queries executed %s times in %s seconds."
msgstr "Executed queries"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Table comments"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Hide search results"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Prev"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Next"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Today"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "January"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "February"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "March"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "April"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "May"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "June"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "July"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "August"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "September"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "October"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "November"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Sunday"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Monday"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Tuesday"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Wednesday"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Thursday"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Friday"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Saturday"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Tu"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "We"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Th"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Wk"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Hour"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Second"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Use text field"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid email address"
msgstr "Please enter a valid number!"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "Please enter a valid number!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date"
msgstr "Please enter a valid number!"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date ( ISO )"
msgstr "Please enter a valid number!"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "Please enter a valid number!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "Please enter a valid number!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "Please enter a valid length!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter the same value again"
msgstr "Please enter a valid number!"
-#: js/messages.php:776
+#: js/messages.php:777
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter no more than {0} characters"
msgstr "Please enter correct captcha!"
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter at least {0} characters"
msgstr "Please enter correct captcha!"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a value between {0} and {1}"
msgstr "Please enter a valid number!"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Please enter a valid length!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Please enter a valid number!"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date or time"
msgstr "Please enter a valid number!"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Please enter a valid number!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3141,17 +3184,17 @@ msgstr "per hour"
msgid "per day"
msgstr "per day"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Existing configuration file (%s) is not readable."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Wrong permissions on configuration file, should not be world writeable!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Font size"
@@ -3172,7 +3215,7 @@ msgid "Requery"
msgstr "subquery"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3394,7 +3437,7 @@ msgid "Count:"
msgstr "Count"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3583,7 +3626,7 @@ msgstr "Update bookmark"
msgid "Delete bookmark"
msgstr "Delete bookmark"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3591,19 +3634,19 @@ msgstr ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "The server is not responding."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Please check privileges of directory containing database."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Details…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Connection for controluser as defined in your configuration failed."
@@ -3677,6 +3720,16 @@ msgstr "Words are separated by a space character (\" \")."
msgid "Inside tables:"
msgstr "Inside tables:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Select All"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Unselect All"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Inside column:"
@@ -3730,7 +3783,7 @@ msgid "All"
msgstr "All"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Number of rows:"
@@ -4031,7 +4084,7 @@ msgstr ""
"removed."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -4042,34 +4095,13 @@ msgstr "Server"
msgid "View"
msgstr "View"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Structure"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4166,8 +4198,8 @@ msgstr "Textarea columns"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Databases"
@@ -4270,7 +4302,7 @@ msgid "Recent"
msgstr "Recent"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Favourite tables"
@@ -4339,16 +4371,6 @@ msgstr "Joins"
msgid "Sorting"
msgstr "Sorting"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tables"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
@@ -4916,7 +4938,7 @@ msgstr "Max: %s%s"
msgid "MySQL said: "
msgstr "MySQL said: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Explain SQL"
@@ -4933,7 +4955,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Without PHP Code"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Create PHP Code"
@@ -5048,17 +5070,6 @@ msgstr "Use this value"
msgid "Rows"
msgstr "Rows"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5230,7 +5241,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Invalid authentication method set in configuration:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5238,24 +5249,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "You should upgrade to %s %s or later."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Error: Token mismatch"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS overwrite attempt"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "possible exploit"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "numeric key detected"
@@ -5486,7 +5497,7 @@ msgid "Set value: %s"
msgstr "Set value: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Restore default value"
@@ -5955,7 +5966,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Maximum execution time"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -5965,7 +5976,7 @@ msgstr "Add %s statement"
msgid "Save as file"
msgstr "Save as file"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Character set of the file"
@@ -5992,15 +6003,15 @@ msgstr "Compression"
msgid "Put columns names in the first row"
msgstr "Put columns names in the first row"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Columns enclosed with"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Columns escaped with"
@@ -6016,14 +6027,14 @@ msgstr "Replace NULL with"
msgid "Remove CRLF characters within columns"
msgstr "Remove CRLF characters within columns"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Columns terminated with"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Lines terminated with"
@@ -6093,7 +6104,7 @@ msgid "Save on server"
msgstr "Save on server"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Overwrite existing file(s)"
@@ -6110,8 +6121,8 @@ msgstr "Add AUTO_INCREMENT value"
msgid "Enclose table and column names with backquotes"
msgstr "Enclose table and column names with backquotes"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL compatibility mode"
@@ -6230,15 +6241,15 @@ msgid "Customize browse mode."
msgstr "Customise browse mode."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Customise default options."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6266,7 +6277,7 @@ msgstr "Export defaults"
msgid "Customize default export options."
msgstr "Customise default export options."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Features"
@@ -6311,40 +6322,52 @@ msgstr "Navigation panel"
msgid "Customize appearance of the navigation panel."
msgstr "Customise appearance of the navigation panel."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigation panel"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Customise navigation panel"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servers"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Servers display options."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Tables display options."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Main panel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Other core settings"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Settings that didn't fit anywhere else."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Page titles"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6358,11 +6381,11 @@ msgstr ""
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Security"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6370,23 +6393,23 @@ msgstr ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Basic settings"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Authentication"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Authentication settings."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Server configuration"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6394,15 +6417,15 @@ msgstr ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Enter server connection parameters."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Configuration storage"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6412,11 +6435,11 @@ msgstr ""
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Changes tracking"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6424,110 +6447,110 @@ msgstr ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Customise export options"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Customise import defaults"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Customise navigation panel"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Customise main panel"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL queries"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL Query box"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Customise links shown in SQL Query boxes."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "SQL queries settings."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Startup"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Customise startup page."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Database structure"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Choose which details to show in the database structure (list of tables)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Table structure"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Settings for the table structure (list of columns)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Tabs"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Choose how you want tabs to work."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Display relational schema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Paper size"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Text fields"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Customise text input fields."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! text"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Customise default options"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Warnings"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Disable some of the warnings shown by phpMyAdmin."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6535,15 +6558,15 @@ msgstr ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Extra parameters for iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6551,11 +6574,11 @@ msgstr ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignore multiple statement errors"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6565,25 +6588,25 @@ msgstr ""
"This might be a good way to import large files, however it can break "
"transactions."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Partial import: allow interrupt"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Do not abort on INSERT error"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6591,68 +6614,68 @@ msgstr ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Format of imported file"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Use LOCAL keyword"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Column names in first row"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Do not import empty rows"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Import currencies (£5.00 to 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Import percentages as proper decimals (12.00% to .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Number of queries to skip from start."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Partial import: skip queries"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Do not use AUTO_INCREMENT for zero values"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Initial state for sliders"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "How many rows can be inserted at one time."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Number of inserted rows"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Maximum number of characters shown in any non-numeric column on browse view."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Limit column characters"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6662,11 +6685,11 @@ msgstr ""
"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."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Delete all cookies on logout"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6674,11 +6697,11 @@ msgstr ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Recall user name"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6690,48 +6713,48 @@ msgstr ""
"and will be deleted as soon as you close the browser window. This is "
"recommended for non-trusted environments."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Login cookie store"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Define how long (in seconds) a login cookie is valid."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Login cookie validity"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Double size of textarea for LONGTEXT columns."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Bigger textarea for LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Maximum number of characters used when a SQL query is displayed."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Maximum displayed SQL length"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Users cannot set a higher value"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Maximum number of databases displayed in database list."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Maximum databases"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6739,11 +6762,11 @@ msgstr ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Maximum items on first level"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6751,11 +6774,11 @@ msgstr ""
"The number of items that can be displayed on each page of the navigation "
"tree."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Maximum items in branch"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6763,19 +6786,19 @@ msgstr ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Maximum number of rows to display"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Maximum number of tables displayed in table list."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Maximum tables"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6783,41 +6806,41 @@ msgstr ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Memory limit"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Show hidden navigation tree items."
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Show logo in navigation panel."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Display logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL where logo in the navigation panel will point to."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Logo link URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6825,29 +6848,29 @@ msgstr ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Logo link target"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Display server choice at the top of the navigation panel."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Display servers selection"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Target for quick access icon"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Target for quick access icon"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6855,15 +6878,15 @@ msgstr ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Minimum number of items to display the filter box"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Minimum number of databases to display the database filter box"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6875,105 +6898,161 @@ msgstr ""
"Group items in the navigation tree (determined by the separator defined "
"below)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Group items in the tree"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "String that separates databases into different tree levels."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Database tree separator"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "String that separates tables into different tree levels."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Table tree separator"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Maximum table tree depth"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Highlight server under the mouse cursor."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Enable highlighting"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
#, fuzzy
#| msgid "Whether to disable the possibility of database expansion or not."
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr "Whether to disable the possibility of database expansion or not."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "Table navigation bar"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr "Maximum number of recently used tables; set 0 to disable."
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr "Maximum number of favourite tables; set 0 to disable."
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Showing tables:"
+msgid "Show tables in tree"
+msgstr "Showing tables:"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr "Recently used tables"
+#, fuzzy
+#| msgid "Whether to disable the possibility of database expansion or not."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Whether to disable the possibility of database expansion or not."
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Show versions"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr "Where to show the table row links"
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Show hidden navigation tree items."
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Show function fields"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Show processes"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Show versions"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Show hidden navigation tree items."
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr "Maximum number of recently used tables; set 0 to disable."
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr "Maximum number of favourite tables; set 0 to disable."
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr "Recently used tables"
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr "These are Edit, Copy and Delete links."
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr "Where to show the table row links"
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "Use natural order for sorting table and database names."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Natural order"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Use only icons, only text or both."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Table navigation bar"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Use GZip output buffering for increased speed in HTTP transfers."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip output buffering"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6981,19 +7060,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Default sorting order"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Use persistent connections to MySQL databases."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Persistent connections"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -7003,11 +7082,11 @@ msgstr ""
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Missing phpMyAdmin configuration storage tables"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -7015,11 +7094,11 @@ msgstr ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Server/library difference warning"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -7027,27 +7106,27 @@ msgstr ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "MySQL reserved word warning"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "How to display the menu tabs"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "How to display various action links"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Disallow BLOB and BINARY columns from editing."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Protect binary columns"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7057,127 +7136,127 @@ msgstr ""
"storage). If disabled, this utilises JS-routines to display query history "
"(lost by window close)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Permanent query history"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "How many queries are kept in history."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Query history length"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "Select which functions will be used for character set conversion."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Recoding engine"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "When browsing tables, the sorting of each table is remembered."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Remember table's sorting"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Default sorting order"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Repeat headers"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Grid editing: trigger action"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relational display column"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Servers display options."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Grid editing: save all edited cells at once"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Directory where exports can be saved on server."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Save directory"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Leave blank if not used."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Host authorisation order"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Leave blank for defaults."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Host authorisation rules"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Allow logins without a password"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Allow root login"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Session value"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP Basic Auth Realm name to display when doing HTTP Auth."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7187,19 +7266,19 @@ msgstr ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey config file"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Authentication method to use."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Authentication type"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7207,11 +7286,11 @@ msgstr ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Bookmark table"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7219,31 +7298,31 @@ msgstr ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Column information table"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Compress connection to MySQL server."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Compress connection"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Connection type"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Control user password"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7251,11 +7330,11 @@ msgstr ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Control user"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7263,11 +7342,11 @@ msgstr ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Control host"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7277,15 +7356,15 @@ msgstr ""
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Control port"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Hide databases matching regular expression (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7293,15 +7372,15 @@ msgstr ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Disable use of INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Hide databases"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7309,23 +7388,23 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL query history table"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Hostname where MySQL server is running."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Server hostname"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Logout URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7333,15 +7412,15 @@ msgstr ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Maximal number of table preferences to store"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "QBE saved searches table"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7349,13 +7428,13 @@ msgstr ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Textarea columns"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7367,15 +7446,15 @@ msgstr ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Try to connect without password."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Connect without password"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7385,29 +7464,29 @@ msgstr ""
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
"[kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Show only listed databases"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Leave empty if not using config auth."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Password for config auth"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF schema: pages table"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7417,20 +7496,20 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Database name"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "Port on which MySQL server is listening, leave empty for default."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Server port"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7438,11 +7517,11 @@ msgstr ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Recently used table"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7454,13 +7533,13 @@ msgstr ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Favourite tables"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7468,11 +7547,11 @@ msgstr ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Relation table"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7480,31 +7559,31 @@ msgstr ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Signon session name"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Signon URL"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "Socket on which MySQL server is listening, leave empty for default."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Enable SSL for connection to MySQL server."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Use SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7512,13 +7591,13 @@ msgstr ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF schema: table coordinates"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7526,11 +7605,11 @@ msgstr ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Display columns table"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7538,11 +7617,11 @@ msgstr ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "UI preferences table"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7550,11 +7629,11 @@ msgstr ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Add DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7562,11 +7641,11 @@ msgstr ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Add DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7574,20 +7653,20 @@ msgstr ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Add DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Defines the list of statements the auto-creation uses for new versions."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Statements to track"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7595,11 +7674,11 @@ msgstr ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL query tracking table"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7607,11 +7686,11 @@ msgstr ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Automatically create versions"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7619,11 +7698,11 @@ msgstr ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "User preferences storage table"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7633,11 +7712,11 @@ msgstr ""
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Users table"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7647,11 +7726,11 @@ msgstr ""
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "User groups table"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7659,15 +7738,15 @@ msgstr ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Hidden navigation items table"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "User for config auth"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7675,19 +7754,19 @@ msgstr ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Verbose name of this server"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Whether a user should be displayed a \"show all (rows)\" button."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Allow to display all the rows"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7697,15 +7776,15 @@ msgstr ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Show password change form"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Show create database form"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
@@ -7713,42 +7792,42 @@ msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Show or hide a column displaying the Creation timestamp for all tables."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Table comments"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Show or hide a column displaying the Creation timestamp for all tables."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Show Creation timestamp"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Show or hide a column displaying the Last update timestamp for all tables."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Show Last update timestamp"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Show or hide a column displaying the Last check timestamp for all tables."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Show Last check timestamp"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7756,27 +7835,27 @@ msgstr ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Show field types"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Display the function fields in edit/insert mode."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Show function fields"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Whether to show hint or not."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Show hint"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7784,53 +7863,53 @@ msgstr ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Show phpinfo() link"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Show detailed MySQL server information"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Show SQL queries"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Defines whether the query box should stay on-screen after its submission."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Retain query box"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "Allow to display database and table statistics (eg. space usage)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Show statistics"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Mark used tables and make it possible to show databases with locked tables."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Skip locked tables"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7838,11 +7917,11 @@ msgid ""
"detected."
msgstr "A warning is displayed on the main page if Suhosin is detected."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin warning"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7855,13 +7934,13 @@ msgstr ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Login cookie validity"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -7873,11 +7952,11 @@ msgstr ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Textarea columns"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7889,31 +7968,31 @@ msgstr ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Textarea rows"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Title of browser window when a database is selected."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Title of browser window when nothing is selected."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Default title"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Title of browser window when a server is selected."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Title of browser window when a table is selected."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7925,27 +8004,27 @@ msgstr ""
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "List of trusted proxies for IP allow/deny"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Directory on server where you can upload files for import."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Upload directory"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Allow for searching inside the entire database."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Use database search"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7953,26 +8032,26 @@ msgstr ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Enable the Developer tab in settings"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Check for latest version"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Enables check for latest version on main phpMyAdmin page."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Version check"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7984,11 +8063,11 @@ msgstr ""
"if the server where phpMyAdmin is installed does not have direct access to "
"the internet. The format is: \"hostname:portnumber\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Proxy url"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7998,19 +8077,19 @@ msgstr ""
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Proxy username"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "The password for authenticating with the proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Proxy password"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -8018,53 +8097,53 @@ msgstr ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Enter your public key for your domain reCaptcha service."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Public key for reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Enter your private key for your domain reCaptcha service."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Private key for reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Choose the default action when sending error reports."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Send error reports"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Executed queries"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8092,44 +8171,44 @@ msgstr "HTTP authentication"
msgid "Signon authentication"
msgstr "Signon authentication"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV using LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Open-Document Spreadsheet"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Quick"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Custom"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Database export options"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV for MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Open-Document Text"
@@ -8160,7 +8239,7 @@ msgstr ""
"You are using the mysql extension which is deprecated in phpMyAdmin. Please "
"consider installing the mysqli extension."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8227,7 +8306,7 @@ msgstr "Create table"
msgid "Number of columns"
msgstr "Number of columns"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Could not load export plug-ins, please check your installation!"
@@ -8270,11 +8349,11 @@ msgstr "Table(s):"
msgid "Format:"
msgstr "Format:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Format-specific options:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8282,52 +8361,52 @@ msgstr ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Encoding Conversion:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Rows:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Dump some row(s)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Row to begin at:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Dump all rows"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Output:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Save on server in the directory %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "File name template:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ will become the server name"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ will become the database name"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ will become the table name"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8338,74 +8417,86 @@ msgstr ""
"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:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "use this for future exports"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Character set of the file:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Compression:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zipped"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzipped"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "View output as text"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Export views as tables"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Export table headers"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Save output to a file"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Skip tables larger than"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Select Tables"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Select Tables"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "Database name"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New page name: "
msgid "New table name"
msgstr "New page name: "
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "Copy column name"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9028,7 +9119,7 @@ msgid "Create an index on %s columns"
msgstr "Create an index on %s columns"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Hide"
@@ -9161,11 +9252,6 @@ msgstr "From"
msgid "To"
msgstr "To"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Submit"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Add table prefix:"
@@ -9382,22 +9468,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "An error has occurred while loading the navigation tree"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Group name:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Events:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Functions:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procedures:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tables:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Views:"
@@ -9423,13 +9515,13 @@ msgstr "Navigation panel"
msgid "Reload navigation panel"
msgstr "Reload navigation panel"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, fuzzy, php-format
#| msgid "%s other result found"
#| msgid_plural "%s other results found"
@@ -9438,20 +9530,20 @@ msgid_plural "%s results found"
msgstr[0] "%s other result found"
msgstr[1] "%s other results found"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filter databases by name or regex"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Clear fast filter"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filter by name or regex"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9485,7 +9577,7 @@ msgstr "New"
msgid "Database operations"
msgstr "Database operations"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Show hidden items"
@@ -10703,13 +10795,13 @@ msgstr "Column names: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Invalid parameter for CSV import: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10718,13 +10810,13 @@ msgstr ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Invalid format of CSV input on line %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Invalid column count in CSV input on line %d."
@@ -11140,57 +11232,57 @@ msgstr "Formats text as SQL query with syntax highlighting."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formats text as SQL query with syntax highlighting."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Error: relation already exists."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY relation has been added."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Error: Relation could not be added!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Error: Relational features are disabled!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Internal relation has been added."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: Internal relation could not be added!"
msgstr "Error: Relation could not be added!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation has been added."
msgid "FOREIGN KEY relation has been removed."
msgstr "FOREIGN KEY relation has been added."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Error: Relation could not be added!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: Internal relation could not be removed!"
msgstr "Error: Relation could not be added!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation has been added."
msgid "Internal relation has been removed."
@@ -11287,11 +11379,17 @@ msgstr "Saving Query-By-Example searches"
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Remember table's sorting"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Quick steps to setup advanced features:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
#| msgid ""
#| "Create the needed tables with the examples/create_tables.sql."
@@ -11299,11 +11397,11 @@ msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Create the needed tables with the examples/create_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Create a pma user and give access to these tables."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11311,22 +11409,22 @@ msgstr ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr "Re-login to phpMyAdmin to load the updated configuration file."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "no description"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11334,14 +11432,14 @@ msgid ""
"configuration storage there."
msgstr "Missing phpMyAdmin configuration storage tables"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Missing phpMyAdmin configuration storage tables"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12090,7 +12188,7 @@ msgstr "There are no events to display."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Current Server:"
@@ -16918,9 +17016,6 @@ msgstr "concurrent_insert is set to 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Delete tracking data for this table"
-#~ msgid "Show versions"
-#~ msgstr "Show versions"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18247,9 +18342,6 @@ msgstr "concurrent_insert is set to 0"
#~ msgid "Reset"
#~ msgstr "Reset"
-#~ msgid "Show processes"
-#~ msgstr "Show processes"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reset"
diff --git a/po/eo.po b/po/eo.po
index 16aa94d99e..77a32204e5 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-01-01 17:51+0200\n"
"Last-Translator: Eliovir
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr ""
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr ""
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr ""
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2352,437 +2393,437 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
-msgid "Show arguments"
+#, php-format
+msgid "%s argument(s) passed"
msgstr ""
#: js/messages.php:595
+msgid "Show arguments"
+msgstr ""
+
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "hodiaŭ"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "januaro"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "februaro"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "marto"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "aprilo"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "majo"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "junio"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "julio"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "aŭgusto"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "septembro"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "oktobro"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "novembro"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "decembro"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "aŭg"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "dec"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Dimanĉo"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Lundo"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Mardo"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Merkredo"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Ĵaŭdo"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Vendredo"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sabato"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Mard"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Merk"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Ĵaŭ"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Ĵa"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr ""
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2853,16 +2894,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2881,7 +2922,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3059,7 +3100,7 @@ msgid "Count:"
msgstr ""
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3230,25 +3271,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3322,6 +3363,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr ""
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr ""
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3375,7 +3426,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3667,7 +3718,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3678,34 +3729,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3800,8 +3830,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -3904,7 +3934,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr ""
@@ -3973,16 +4003,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4481,7 +4501,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4498,7 +4518,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4611,17 +4631,6 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4777,7 +4786,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4785,24 +4794,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5022,7 +5031,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5417,7 +5426,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5426,7 +5435,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5453,15 +5462,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5477,14 +5486,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5554,7 +5563,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5571,8 +5580,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5685,15 +5694,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5721,7 +5730,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5766,341 +5775,349 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+msgid "Navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6108,1060 +6125,1100 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
+#: libraries/config/messages.inc.php:487
+msgid "Show tables in tree"
msgstr ""
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7169,52 +7226,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7222,80 +7279,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7319,44 +7376,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7385,7 +7442,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7450,7 +7507,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7493,62 +7550,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7556,64 +7613,72 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr ""
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr ""
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr ""
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8167,7 +8232,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8299,11 +8364,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8516,22 +8576,26 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
-msgid "Tables:"
+msgid "Procedures:"
msgstr ""
#: libraries/navigation/Navigation.class.php:196
+msgid "Tables:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8555,33 +8619,33 @@ msgstr ""
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8615,7 +8679,7 @@ msgstr ""
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9750,26 +9814,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10098,47 +10162,47 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr ""
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr ""
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr ""
@@ -10223,54 +10287,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -10987,7 +11055,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/es.po b/po/es.po
index 2af28a1b05..aa1a057481 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
-"PO-Revision-Date: 2015-06-22 20:58+0200\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
+"PO-Revision-Date: 2015-06-27 03:51+0200\n"
"Last-Translator: Franco
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2329,28 +2370,28 @@ msgstr ""
"intercambiar entre ASC/DESC.
- Pulsar Ctrl+Click o Alt+Click (Mac: Shift"
"+Option+Click) para eliminar la columna de la cláusula «ORDER BY»"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Pulsar para marcar/desmarcar."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Haga doble click para copiar el nombre de la columna."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr ""
"Pulsa la flecha de la lista desplegable
para conmutar la visibilidad "
"de la columna."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Mostrar todo"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2359,13 +2400,13 @@ msgstr ""
"la edición de la grilla y los enlaces de copiado, eliminación y edición "
"pueden no funcionar luego de guardar."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Introduzca una cadena hexadecimal válida. Los carácteres válidos son 0-9 y A-"
"F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2373,136 +2414,136 @@ msgstr ""
"¿Realmente desea ver todas las filas? Una tabla grande podría afectar el "
"funcionamiento del navegador."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Longitud original"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "cancelar"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Abortado"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Éxito"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Estado de la importación"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Suelte aquí los archivos"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Seleccionar base de datos primero"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"También puede editar la mayoría de los valores
con un pulsado doble "
"directamente en su contenido."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Puede editar la mayoría de los valores
pulsando directamente en su "
"contenido."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Ir al enlace:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Copie el nombre de la columna."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Haga click con el botón derecho sobre la columna para copiarla en el "
"portapapeles."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Generar contraseña"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generar"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Cambar contraseña"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Más"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Mostrar panel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Esconder panel"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Mostrar los elementos escondidos del árbol de navegación."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Enlace al panel principal"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Deshacer enlace en el panel principal"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Para filtrar todas las bases de datos en servidor, presione Enter después de "
"un término de búsqueda"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Para filtrar los %s en base de datos, presione Enter después de un término "
"de búsqueda"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "mesas"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "Vistas"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "procedimientos"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "eventos"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "Funciones"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"La página solicitada no se encontró en el historial, puede haber expirado."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2512,43 +2553,43 @@ msgstr ""
"la obtenga. La versión más reciente es %s, y existe desde el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", versión estable más reciente:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "actualizada"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Crear vista"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Enviar reporte de error"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Enviar reporte de error"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
"Ocurrió un error fatal en JavaScript. ¿Desearía enviar un reporte de error?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Cambiar configuraciones del reporte"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Mostrar detalles del reporte"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2556,7 +2597,7 @@ msgstr ""
"¡La exportación está incompleta debido a un límite en el tiempo de ejecución "
"demasiado bajo a nivel de PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2566,59 +2607,59 @@ msgstr ""
"enviarlo se podrían ignorar algunos campos debido a la configuración "
"«max_input_vars» de PHP."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "¡Se detectaron algunos errores en el servidor!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Revise el pie de esta ventana."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignorar todos"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Un momento, se están enviando en este momento debido a su configuración."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "¿Ejecutar esta consulta nuevamente?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "¿Realmente desea eliminar este favorito?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr "Ocurrió un error al obtener información de depuración SQL."
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "%s consultas ejecutadas %s veces en %s segundos."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr "%s argumento(s) correcto(s)"
-#: js/messages.php:594
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Mostrar argumentos"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Ocultar argumentos"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr "Tiempo necesario:"
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2629,333 +2670,331 @@ msgstr ""
"podrían no funcionar correctamente. En Safari, ésto puede deberse al \"Modo "
"de Navegación Privada\"."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Siguiente"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Hoy"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Enero"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Febrero"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Marzo"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Abril"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mayo"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Junio"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Julio"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Agosto"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Septiembre"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Octubre"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Noviembre"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Diciembre"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Lunes"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Martes"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Miércoles"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Jueves"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Viernes"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Ju"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Vi"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Sem"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-year-month"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Segundo"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Este campo es requerido"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Corrige este campo"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Ingrese un correo electrónico válido"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Ingrese una URL válida"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Ingrese una fecha válida"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Ingrese una fecha ( ISO ) válida"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Ingrese un número válido"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Ingrese un número de tarjeta de crédito valido"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Ingrese solo dígitos"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Ingrese el mismo valor de nuevo"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Ingrese no más de {0} caracteres"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Ingrese al menos {0} caracteres"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Ingrese un valor entre {0} y {1} caracteres de largo"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Ingrese un valor entre {0} y {1}"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Ingrese un valor menor o igual a {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Ingrese un valor mayor o igual a {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Ingrese una fecha u hora válida"
-#: js/messages.php:784
-#, fuzzy
-#| msgid "Please enter a valid number!"
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
-msgstr "Ingrese una entrada válida de HEX"
+msgstr "Ingrese una entrada HEX válida"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3030,18 +3069,18 @@ msgstr "por hora"
msgid "per day"
msgstr "por día"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "El archivo de configuración existente (%s) no pudo ser leído."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Permisos incorrectos en el archivo de configuración ¡cualquiera no debería "
"poder modificarlo!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Tamaño de fuente"
@@ -3060,7 +3099,7 @@ msgid "Requery"
msgstr "Reconsultar"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3238,7 +3277,7 @@ msgid "Count:"
msgstr "Cantidad:"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3285,6 +3324,8 @@ msgid ""
"Execute queries on Enter and insert new line with Shift + Enter. To make "
"this permanent, view settings."
msgstr ""
+"Ejecute consultas con Enter e introduce la nueva línea con Shift + Enter. "
+"Para que esto permanezca, vea la configuración."
#: libraries/Console.class.php:385
msgid "Switch to dark theme"
@@ -3409,7 +3450,7 @@ msgstr "Actualizar favorito"
msgid "Delete bookmark"
msgstr "Eliminar favorito"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3417,19 +3458,19 @@ msgstr ""
"El servidor no está respondiendo (o el zócalo local al servidor MySQL no "
"está configurado correctamente)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "El servidor no está respondiendo."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Revisa los permisos del directorio que contiene la base de datos."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detalles…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La conexión para controluser, como está definida en su configuración, "
@@ -3507,6 +3548,16 @@ msgstr "Las palabras están separadas por un espacio (\" \")."
msgid "Inside tables:"
msgstr "Dentro de las tablas:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Seleccionar todo"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Deseleccionar todo"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Dentro de la columna:"
@@ -3560,7 +3611,7 @@ msgid "All"
msgstr "Todos/as"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Número de filas:"
@@ -3864,7 +3915,7 @@ msgstr ""
"uno."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Servidor"
@@ -3875,34 +3926,13 @@ msgstr "Servidor"
msgid "View"
msgstr "Visualizar"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Estructura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3997,8 +4027,8 @@ msgstr "Columnas centrales"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Bases de datos"
@@ -4101,7 +4131,7 @@ msgid "Recent"
msgstr "Reciente"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Tablas favoritas"
@@ -4170,16 +4200,6 @@ msgstr "Vínculos (Joins)"
msgid "Sorting"
msgstr "Ordenación"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tablas"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Coordinador de transacción"
@@ -4761,7 +4781,7 @@ msgstr "Máximo: %s%s"
msgid "MySQL said: "
msgstr "MySQL ha dicho: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Explicar SQL"
@@ -4778,7 +4798,7 @@ msgstr "Analice Explicar en %s"
msgid "Without PHP Code"
msgstr "Sin código PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Crear código PHP"
@@ -4893,17 +4913,6 @@ msgstr "Use este valor"
msgid "Rows"
msgstr "Filas"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Datos"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5069,7 +5078,7 @@ msgstr "Servidor %d"
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:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5081,24 +5090,24 @@ msgstr ""
"phpMyAdmin utiliza actualmente la zona horaria predeterminada del servidor "
"de la base de datos."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, 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."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Error: no coincide un «token»"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "intento de sobre-escritura de la variable GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "posible aprovechamiento"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "telado numérico detectado"
@@ -5325,7 +5334,7 @@ msgid "Set value: %s"
msgstr "Valor establecido: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Restaurar valor predeterminado"
@@ -5353,12 +5362,6 @@ msgstr ""
#: libraries/config/ServerConfigChecks.class.php:371
#, php-format
-#| msgid ""
-#| "This %soption%s should be disabled as it allows attackers to bruteforce "
-#| "login to any MySQL server. If you feel this is necessary, use %strusted "
-#| "proxies list%s. However, IP-based protection may not be reliable if your "
-#| "IP belongs to an ISP where thousands of users, including you, are "
-#| "connected to."
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
"login to any MySQL server. If you feel this is necessary, use %srestrict "
@@ -5737,6 +5740,8 @@ msgstr "Confirmar las consultas DROP"
msgid ""
"Log SQL queries and their execution time, to be displayed in the console"
msgstr ""
+"El registro de consultas SQL y su tiempo de ejecución, se mostrará en la "
+"consola"
#: libraries/config/messages.inc.php:89
msgid "Tab that is displayed when entering a database."
@@ -5763,16 +5768,12 @@ msgid "Default table tab"
msgstr "Ceja predeterminada de la tabla"
#: libraries/config/messages.inc.php:95
-#, fuzzy
-#| msgid "Enclose table and column names with backquotes"
msgid "Autocomplete of the table and column names in the SQL queries."
-msgstr "Encerrar nombres de tabla y columna con comillas invertidas"
+msgstr "Autocompletado de nombres de tablas y columnas en la consulta SQL."
#: libraries/config/messages.inc.php:96
-#, fuzzy
-#| msgid "Enclose table and column names with backquotes"
msgid "Enable autocomplete for table and column names"
-msgstr "Encerrar nombres de tabla y columna con comillas invertidas"
+msgstr "Permitir autocompletado para nombres de tablas y columnas"
#: libraries/config/messages.inc.php:98
msgid "Whether the table structure actions should be hidden."
@@ -5814,17 +5815,16 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Tiempo máximo de ejecución"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
-#, fuzzy, php-format
-#| msgid "Add %s statement"
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
+#, php-format
msgid "Use %s statement"
-msgstr "Agregar sentencia %s"
+msgstr "Usar sentencia %s"
#: libraries/config/messages.inc.php:116 prefs_manage.php:318
msgid "Save as file"
msgstr "Guardar como archivo"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Conjunto de caracteres del archivo"
@@ -5851,15 +5851,15 @@ msgstr "Compresión"
msgid "Put columns names in the first row"
msgstr "Poner los nombres de campo en la primera fila"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Columnas encerradas entre"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Caracter de escape de columnas"
@@ -5875,14 +5875,14 @@ msgstr "Reemplazar NULL con"
msgid "Remove CRLF characters within columns"
msgstr "Eliminar los caracteres CRLF en las columnas"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Columnas terminadas con"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Líneas terminadas en"
@@ -5954,7 +5954,7 @@ msgid "Save on server"
msgstr "Guardar en el servidor"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Sobreescribir el(los) archivo(s) existente(s)"
@@ -5971,8 +5971,8 @@ msgstr "Añadir el valor AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Encerrar nombres de tabla y columna con comillas invertidas"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Modo compatible con SQL"
@@ -6000,11 +6000,9 @@ msgid "Export views as tables"
msgstr "Exportar vistas como tablas"
#: libraries/config/messages.inc.php:177
-#, fuzzy
-#| msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgid "Export related metadata from phpMyAdmin configuration storage"
msgstr ""
-"%sCree%s las tablas en las que se guarda la configuración de phpMyAdmin."
+"Exportar metadatos relacionados de la configuración almacenada de phpMyAdmin"
#: libraries/config/messages.inc.php:178 libraries/config/messages.inc.php:180
#: libraries/config/messages.inc.php:181 libraries/config/messages.inc.php:182
@@ -6081,10 +6079,8 @@ msgid "Default value for foreign key checks checkbox for some queries."
msgstr ""
#: libraries/config/messages.inc.php:219
-#, fuzzy
-#| msgid "Foreign key check:"
msgid "Foreign key checks"
-msgstr "Revisión de claves foráneas:"
+msgstr "Revisión de claves foráneas"
#: libraries/config/messages.inc.php:220
msgid "Browse mode"
@@ -6095,15 +6091,15 @@ msgid "Customize browse mode."
msgstr "Cambiar las opciones de la modalidad de visualización."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Personalizar las opciones predeteminadas."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6131,7 +6127,7 @@ msgstr "Exportar las opciones predeterminadas"
msgid "Customize default export options."
msgstr "Personalizar las opciones comunes de exportación predeteminadas."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Características"
@@ -6178,44 +6174,52 @@ msgstr "Panel de navegación"
msgid "Customize appearance of the navigation panel."
msgstr "Cambiar la apariencia del panel de navegación."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Panel de navegación"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Personalizar el panel de navegación"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servidores"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Opciones para visualizar los servidores."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Opciones para visualizar las tablas."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Panel principal"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Otros parámetros cruciales"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Parámetros que no encajaban en otra parte."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Títulos de página"
-#: libraries/config/messages.inc.php:262
-#| msgid ""
-#| "Specify browser's title bar text. Refer to "
-#| "[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be "
-#| "used to get special values."
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6224,11 +6228,11 @@ msgstr ""
"[doc@faq6-27]documentación[/doc] para ver las palabras mágicas que podrán "
"ser usadas para obtener valores especiales."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Seguridad"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6236,23 +6240,23 @@ msgstr ""
"Tenga en cuenta que phpMyAdmin es solamente una interfaz y sus opciones no "
"limitan a MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Configuraciones básicas"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Autentificación"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Configuración de autentificación."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Configuración del servidor"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6260,15 +6264,15 @@ msgstr ""
"Configuración avanzada del servidor, no cambie estas opciones a menos que "
"usted conozca como funcionan."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Escriba los ajustes básicos del servidor."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Almacenamiento de configuración"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6278,11 +6282,11 @@ msgstr ""
"adicionales, mire [doc@linked-tables]linked-tables infrastructure[/doc] en "
"la documentación."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Seguimiento de cambios"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6290,111 +6294,111 @@ msgstr ""
"Seguimiento de cambios hechos en la base de datos. Requiere almacenamiento "
"de configuración phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Personalizar las opciones para la exportación"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Personalizar los parámetros de importación predeterminados"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Personalizar el panel de navegación"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Personalizar el panel principal"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Consultas SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Ventana de consultas SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Cambiar los enlaces mostrados en las ventanas de consulta SQL."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Configuración de las consultas SQL."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Inicio"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Cambiar las opciones de la página de arranque."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Estructura de base de datos"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Elija los detalles a mostrar en la estructura de base de datos (lista de "
"tablas)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Estructura de tabla"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Configuración de la estructura de la tabla (lista de columnas)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Tabulaciones"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Seleccione como quiere que funcionen las tabulaciones."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Mostrar esquema relacional"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Tamaño del papel"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Campos de texto"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Personalizar los campos de entrada de texto."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texto «Texy!»"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Personalizar las opciones predeteminadas"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Advertencias"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Desactivar algunas de las advertencias mostradas por phpMyAdmin."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6402,15 +6406,15 @@ msgstr ""
"Habilite la compresión [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] para "
"las operaciones de importación y exportación."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Parámetros adicionales para iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6418,11 +6422,11 @@ msgstr ""
"De estar activado, phpMyAdmin continúa computando consultas con múltiples "
"sentencias incluso si falló una de las consultas."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignorar errores en sentencias múltiples"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6432,25 +6436,25 @@ msgstr ""
"acercando al límite de tiempo. Esta puede ser una buena forma para importar "
"archivos grandes, sin embargo, puede romper las transacciones."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Importación parcial: permitir interrupciones"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "No abortar si ocurre un error con INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
-msgstr ""
+msgstr "Agregar ON DUPLICATE KEY UPDATE"
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
-msgstr ""
+msgstr "Actualizar datos cuando las importaciones de llaves están duplicadas"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6458,69 +6462,69 @@ msgstr ""
"Formato predeterminado; tenga presente que esta lista depende de la "
"localización (base de datos, tabla) y solamente SQL está disponible siempre."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Formato del archivo importado"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Use la palabra clave LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Nombres de columna en la primera fila"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "No importar filas vacías"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importar monedas (€5.00 como 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importar porcentajes como números decimales (12.00% como .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Número de consultas a saltarse desde el inicio."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Importación parcial: saltarse las consultas"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "No utilizar AUTO_INCREMENT para los valores iguales a cero"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Estado inicial de los deslizadores"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Cuántas filas se pueden insertar de una vez."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Número de filas insertadas"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Cantidad máxima de caracteres a mostrar en un campo no-numérico en vista de "
"navegación."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Límite de caracteres de la columna"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6532,11 +6536,11 @@ msgstr ""
"que debe finalizar sesión de otros servidores cuando se conecta a múltiples "
"servidores."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Eliminar todas las cookies al finalizar sesión"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6544,11 +6548,11 @@ msgstr ""
"Define si el inicio de sesión anterior se debe recordar o no en la modalidad "
"autenticación mediante [kbd]cookie[/kbd]."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Recordar el nombre del usuario"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6560,51 +6564,51 @@ msgstr ""
"para la sesión actual y se borrará tan pronto cierre la ventana del "
"navegador. Esto es recomendable para entornos no confiables."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Almacenamiento de cookies de inicio de sesión"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
"Define por cuánto tiempo (en segundos) es válido un cookie de inicio de "
"sesión."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Validez del cookie usado para el inicio de sesión"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Doble tamaño del textarea para las columnas LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "textarea más grande para LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Número máximo de caracteres usados al mostrar una consulta SQL."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Máxima longitud al mostrar consulta SQL"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Los usuarios no pueden definir un valor más alto"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
"Número máximo de bases de datos mostradas en una lista de bases de datos."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Número máximo de bases de datos"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6612,11 +6616,11 @@ msgstr ""
"El número de elementos que pueden ser mostrados en cada página en el primer "
"nivel del árbol de navegación."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Cantidad máxima de elementos en el primer nivel"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6624,11 +6628,11 @@ msgstr ""
"El número de elementos que pueden ser mostrados en cada página del árbol de "
"navegación."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Cantidad máxima de elementos en una rama"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6637,19 +6641,19 @@ msgstr ""
"juego de resultados contiene más filas, aparecerán enlaces \"Anterior\" y "
"\"Siguiente\"."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Máximo número de filas a mostrar"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Número máximo de tablas mostradas en una lista de tablas."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Número máximo de tablas"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6657,42 +6661,42 @@ msgstr ""
"El número de bytes que un script puede reservar. ej. [kbd]32M[/kbd] ([kbd]0[/"
"kbd] para ilimitado)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Límite de la memoria"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"En el panel de navegación, reemplaza el árbol de base de datos con un "
"selector"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Mostrar las bases de datos navegación como árbol"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Enlace con el panel principal resaltando la base de datos o tabla actual."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Mostrar el logo en el panel de navegación."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Mostrar el logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL a la que apuntará el logo en el panel de navegación."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL para enlace del logo"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6700,28 +6704,28 @@ msgstr ""
"Abrir la página enlazada en la ventana principal ([kbd]principal[/kbd]) o en "
"una nueva ([kbd]nueva[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Logo destino del enlace"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
"Mostrar la elección de servidor en la parte superior del panel de navegación."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Mostrar la selección de servidores"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Destino para el icono de acceso rápido"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Objetivo para el segundo icono de acceso rápido"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6729,20 +6733,17 @@ msgstr ""
"Define el número mínimo de elementos (tablas, vistas, rutinas y eventos) "
"para mostrar un cuadro de filtro."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Número mínimo de elementos para mostrar la caja de filtro"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
"Número mínimo de bases de datos a mostrar en la ventana de filtro de bases "
"de datos"
-#: libraries/config/messages.inc.php:468
-#| msgid ""
-#| "Group items in the navigation tree (determined by the separator defined "
-#| "below)."
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6750,106 +6751,164 @@ msgstr ""
"Agrupar elementos en el árbol de navegación (determinado por el separador "
"definido abajo en las pestañas superiores de Bases de datos y Tablas)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Agrupar elementos en el árbol"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Cadena que separa bases de datos en diferentes niveles de árbol."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Separador de árbol de base de datos"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Cadena que separa tablas en diferentes niveles de árbol."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Separador de árbol de tablas"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Profundidad máxima del árbol de tablas"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Resaltar servidor bajo el cursor."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Permitir destacar"
-#: libraries/config/messages.inc.php:482
-#| msgid "Whether to disable the possibility of database expansion or not."
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"Si tendrá la posibilidad de expandir el árbol en el panel de navegación."
-#: libraries/config/messages.inc.php:484
-#| msgid "Table navigation bar"
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Activar la expansión del árbol de navegación"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr "Número máximo de tablas recientemente utilizadas; 0 para desactivar."
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr "Cantidad máxima de tablas favoritas; 0 para desactivar."
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Mostrar/Ocultar lista de tablas"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr "Tablas recientemente utilizadas"
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"Si tendrá la posibilidad de expandir el árbol en el panel de navegación."
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr "Estos son los enlaces para Editar, Copiar y Borrar."
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Mostrar versiones"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr "Donde mostrar los enlaces de filas de tabla"
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Mostrar las bases de datos navegación como árbol"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Mostrar los campos de función"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "procedures"
+msgid "Show procedures in tree"
+msgstr "procedimientos"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Mostrar versiones"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Mostrar las bases de datos navegación como árbol"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr "Número máximo de tablas recientemente utilizadas; 0 para desactivar."
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr "Cantidad máxima de tablas favoritas; 0 para desactivar."
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr "Tablas recientemente utilizadas"
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr "Estos son los enlaces para Editar, Copiar y Borrar."
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr "Donde mostrar los enlaces de filas de tabla"
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+"Si se muestran enlaces de fila, incluso en ausencia de una clave única."
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr "Mostrar enlaces de fila de todas maneras"
+
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
"Utilizar orden natural para ordenar nombres de tablas y bases de datos."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Orden natural"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Use solamente íconos, solamente texto o ambos."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Barra de navegación mediante tablas"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Utilizar búfer en salida de GZip para mayor velocidad en transferencias HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Buffer de salida de GZip"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6857,19 +6916,19 @@ msgstr ""
"[kbd]SMART[/kbd] - es decir: orden descendente para columnas de tipo TIME, "
"DATE, DATETIME y TIMESTAMP, ascendente en los demás casos."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Orden de despliegue predeterminado"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Use conexiones persistentes para las bases de datos MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Conexiones persistentes"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6879,11 +6938,11 @@ msgstr ""
"de los detalles de la base de datos si alguna de las tablas requeridas por "
"phpMyAdmin no pudo ser encontrada en el almacenamiento de configuración."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Faltan las tablas de almacenaje de configuración de phpMyAdmin"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6891,11 +6950,11 @@ msgstr ""
"Desactivar la advertencia predeterminada que se muestra si se detecta una "
"diferencia entre la biblioteca MySQL y el servidor."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Advertencia de diferencia servidor/biblioteca"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6904,27 +6963,27 @@ msgstr ""
"Estructura si algún nombre de columna en una tabla es una palabra reservada "
"de MySQL."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Advertencia de palabra reservada de MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Cómo mostrar las pestañas del menú"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Cómo mostrar varios enlaces de acciones"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "No permitir la edición de columnas BLOB y BINARIAS."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Proteger los campos binarios"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6935,110 +6994,110 @@ msgstr ""
"rutinas JavaScript para mostrar el histórico de consultas (olvidado al "
"cerrar la ventana)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Histórico permanente de consultas"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Cuántas consultas se guardan en el histórico."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Longitud del histórico de consultas"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Seleccione cuáles funciones se usarán para la conversión del conjunto de "
"caracteres."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Motor de recodificación"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Al explorar tablas, se recordará el ordenamiento de cada tabla."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Recordar ordenamiento de la tabla"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Ordenación predeterminada para tablas con una clave primaria."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Ordenación predeterminada por clave primaria"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Repetir cabecera cada X celdas, [kbd]0[/kbd] desactiva esta funcionalidad."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Repetir cabeceras"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Edición de grilla: disparador de acción"
# Display option apparently related to
# http://www.phpmyadmin.net/documentation/#relation
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Mostrar columna de relación"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Opciones de visualización"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Edición de grilla: guardar todas las celdas editadas simultáneamente"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
"Directorio donde los archivos exportados se pueden guardar en el servidor."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Directorio de almacenamiento"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Deje en blanco si no necesita usarlo."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Orden en que se autentica el Host"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Deje en blanco para usar los valores predeterminados."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Reglas de autorización del Host"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Permitir inicio de sesión sin contraseña"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Permitir el inicio de sesión como root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Huso horario de la sesión"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7046,17 +7105,17 @@ msgstr ""
"Establece la zona horaria efectiva; posiblemente diferente a la de su "
"servidor de base de datos"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Nombre a mostrar como dominio (HTTP Basic Auth Realm) durante la "
"autenticación HTTP."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "Dominio HTTP (Realm)"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7066,19 +7125,19 @@ msgstr ""
"dispositivo SweKey[/a] (no localizado en su raíz de documentos; valor "
"sugerido: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "Archivo de configuración SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Método de autenticación a usar."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo de autenticación"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7086,11 +7145,11 @@ msgstr ""
"Deje en blanco para no dar soporte [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bookmark[/a], de manera predeterminada: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Agregar tabla a favoritos"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7098,33 +7157,33 @@ msgstr ""
"Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Tabla con información de la columna"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Conexión de compresión con el servidor SQL."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Conexión de compresión"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Cómo conectar con el servidor, mantenga el valor [kbd]tcp[/kbd] en caso de "
"no estar seguro."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Tipo de conexión"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Controlar la contraseña del usuario"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7132,11 +7191,11 @@ msgstr ""
"Un usuario MySQL especial configurado con permisos limitados, más "
"información disponible en [a@http://wiki.cihar.com/pma/controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Controlar al usuario"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7144,11 +7203,11 @@ msgstr ""
"Alternativa para guardar el almacenamiento de configuración; deje vacío para "
"utilizar el ya definido."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Anfitrión de control"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7158,17 +7217,17 @@ msgstr ""
"de configuración; deje vacío para utilizar el puerto predeterminado o el "
"puerto ya definido si el el servidor de control es el mismo."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Puerto de control"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
"Ocultar las bases de datos que cumplen con los criterios de las expresiones "
"regulares (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7176,15 +7235,15 @@ msgstr ""
"Más información en [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] y [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Deshabilitar el uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Ocultar las bases de datos"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7192,23 +7251,23 @@ msgstr ""
"Dejar en blanco para evitar soporte de histórico de consultas SQL, sugerido: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Tabla de histórico de consultas SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Descripción del servidor."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Nombre del servidor"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL de fin de sesión"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7216,15 +7275,15 @@ msgstr ""
"Limita la cantidad de preferencias sobre tablas que serán almacenadas en la "
"base de datos, las más antiguas serán eliminadas automáticamente."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de preferencias sobre tablas a almacenar"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Tabla QBE de búsquedas guardadas"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7232,11 +7291,11 @@ msgstr ""
"Dejar en blanco para omitir la compatibilidad con búsquedas guardadas QBE, "
"sugerido: [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Tabla de columnas centrales"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7244,15 +7303,15 @@ msgstr ""
"Dejar en blanco para desactivar el soporte a las columnas centrales, "
"sugerencia: [kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Intente conectar sin contraseña."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Conecte sin contraseña"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7262,30 +7321,30 @@ msgstr ""
"desea usar sus instancias literales, es decir, use [kbd]'my\\_db'[/kbd] y no "
"[kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Muestre solamente las bases de datos listadas"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Deje vacío si no está usando config auth."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Contraseña para config auth"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Dejar en blanco para evitar soporte para esquema en PDF, sugerido: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "Esquema de PDF: tabla de páginas"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7296,22 +7355,22 @@ msgstr ""
"completa. Deje en blanco para que no exita soporte. Predeterminado: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nombre de la base de datos"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"El puerto al cual ha sido asociado el servidor MySQL, deje vacío para usar "
"el predeterminado."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Puerto del servidor"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7319,11 +7378,11 @@ msgstr ""
"Deje en blanco para eliminar la \"persistencia\" de las tablas recientemente "
"utilizadas entre sesiones, valor sugerido: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Tabla recientemente utilizada"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7331,11 +7390,11 @@ msgstr ""
"Deje en blanco para evitar conservar de manera \"persistente\" sus tablas "
"favoritas, valor sugerido: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Tablas favoritas"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7344,11 +7403,11 @@ msgstr ""
"relation]relation-links[/a], de manera predeterminada: [kbd]pma__relation[/"
"kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Tabla de relaciones"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7356,33 +7415,33 @@ msgstr ""
"Ver [a@http://wiki.cihar.com/pma/auth_types#signon]tipos de autenticación[/"
"a] para conocer un ejemplo."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Nombre de la sesión al signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "URL de signon"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"El puerto escuchado por el servidor MySQL, deje vacío para usar los valores "
"predeterminados."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Puerto del servidor"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Habilitar SSL para conexión con el servidor SQL."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Usar SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7390,11 +7449,11 @@ msgstr ""
"Dejar en blanco para evitar soporte de esquema en PDF, sugerido: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Esquema en PDF y diseñador: tabla de coordenadas"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7402,11 +7461,11 @@ msgstr ""
"Tabla para describir la presentación de las celdas, deje en blanco para "
"quitar soporte, sugerido: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Mostrar tabla de columnas"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7415,11 +7474,11 @@ msgstr ""
"interfaz de tablas entre sesiones, valor sugerido: [kbd]pma__table_uiprefs[/"
"kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Preferencias de interfaz de tablas"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7427,11 +7486,11 @@ msgstr ""
"Si se incluye la sentencia DROP DATABASE IF EXISTS como primera línea del "
"registro al crear una base de datos o no."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Agregar DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7439,11 +7498,11 @@ msgstr ""
"Si se incluye la sentencia DROP TABLE IF EXISTS como primera línea del "
"registro al crear una tabla."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Agregar DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7451,21 +7510,21 @@ msgstr ""
"Si se incluye la sentencia DROP VIEW IF EXISTS como primera línea del "
"registro al crear una vista."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Agregar DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definir la lista de sentencias que la creación automática usa para nuevas "
"versiones."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Sentencias a hacer seguimiento"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7473,11 +7532,11 @@ msgstr ""
"Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor "
"sugerido: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Tabla de seguimiento de consultas SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7485,11 +7544,11 @@ msgstr ""
"Si el mecanismo de seguimiento crea versiones para tablas y vistas "
"automáticamente o no."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Crear versiones automáticamente"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7497,11 +7556,11 @@ msgstr ""
"Deje en blanco para evitar el almacenamiento de preferencias en la base de "
"datos, valor sugerido: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Tabla de almacenamiento de preferencias de usuario"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7511,11 +7570,11 @@ msgstr ""
"activar los menúes personalizables; dejar cualquiera de ellas en blanco "
"desactivará esta funcionalidad; valor sugerido: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Tabla de usuarios"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7525,11 +7584,11 @@ msgstr ""
"personalizables; dejar cualquiera de ellas en blanco desactivará esta "
"funcionalidad; valor sugerido: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Usar la tabla de groupos («groups»)"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7537,34 +7596,34 @@ msgstr ""
"Deje en blanco para desactivar la funcionalidad para mostrar y ocultar los "
"elementos de navegación, valor sugerido: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Tabla de elementos de navegación ocultos"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Usuario para config auth"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "Nombre del servidor donde el servidor SQL se está ejecutando."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Nombre del servidor, forma extendida"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Si el usuario puede ver un botón \"mostrar todos (los registros)\" o no."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Permitir que se muestren todas las filas"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7574,62 +7633,56 @@ msgstr ""
"debido a que la contraseña está incluída en el archivo de configuración; "
"esto no limita la capacidad de ejecutar la misma orden directamente."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Mostrar el formulario para cambio de contraseña"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Mostrar el formulario para crear una base de datos"
-#: libraries/config/messages.inc.php:752
-#, fuzzy
-#| msgid ""
-#| "Show or hide a column displaying the Creation timestamp for all tables."
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-"Mostrar o esconder una columna con las marcas temporales de creación para "
-"todas las tablas."
+"Mostrar u ocultar una columna, mostrando los comentarios de todas las tablas."
-#: libraries/config/messages.inc.php:753
-#, fuzzy
-#| msgid "Table comments"
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
-msgstr "Comentarios de la tabla"
+msgstr "Mostrar comentarios de la tabla"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Mostrar o esconder una columna con las marcas temporales de creación para "
"todas las tablas."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Mostrar marca temporal de creación"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Mostrar o esconder una columna con la marca temporal de la última "
"actualización para todas las tablas."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Mostrar marca temporal de última actualización"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Mostrar o esconder una columna con la marca temporal de la última revisión "
"para todas las tablas."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Mostrar marca temporal de última revisión"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7637,27 +7690,27 @@ msgstr ""
"Si inicialmente se muestran los campos de tipo en el modo de edición/"
"inserción o no."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Mostrar tipo de campos"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Mostrar campos de función en el modo de edición/inserción."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Mostrar los campos de función"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Si mostrar ayudas o no."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Mostrar ayudas"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7665,67 +7718,67 @@ msgstr ""
"Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Mostrar el enlace phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Mostrar información detallada acerca del servidor SQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Define si los enunciados SQL generados por phpMyAdmin se deben mostrar."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Mostrar las consultas SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Define si la consulta se mostrará aún después de enviar el formulario."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Mantener la caja de texto con la consulta"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Permitir mostrar estadísiticas de base de datos y tablas (por ejemplo uso de "
"espacio)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Mostrar estadísticas"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Marcar tablas usadas y hacer posible el mostrar bases de datos con tablas "
"bloqueadas."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Saltarse las tablas bloqueadas"
-#: libraries/config/messages.inc.php:781
-#, fuzzy
-#| msgid "A warning is displayed on the main page if Suhosin is detected."
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
-msgstr "Mostrar advertencia en la página principal si se detecta Suhosin."
+msgstr ""
+"Desactivar el aviso predeterminado que se muestra en la página principal, si "
+"se detecta Suhosin."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Advertencia Suhosin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7735,66 +7788,56 @@ msgstr ""
"Estructura si algún nombre de columna en una tabla es una palabra reservada "
"de MySQL."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "ADVERTENCIA de inicio de sesión cookie validez"
-#: libraries/config/messages.inc.php:787
-#, fuzzy
-#| msgid ""
-#| "Textarea size (columns) in edit mode, this value will be emphasized for "
-#| "SQL query textareas (*2) and for query window (*1.25)."
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
"Tamaño (en columnas) del área de texto en el modo de edición, este valor "
-"será aumentado en áreas de texto para consultas SQL (x2) y en la venta de "
-"consultas (x1,25)."
+"será aumentado en áreas de texto para consultas SQL (x2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Columnas para las áreas de texto"
# See translation string 813
-#: libraries/config/messages.inc.php:789
-#, fuzzy
-#| msgid ""
-#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
-#| "query textareas (*2) and for query window (*1.25)."
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
"Tamaño (en filas) del área de texto en el modo de edición, este valor será "
-"aumentado en áreas de texto para consultas SQL (x2) y en la venta de "
-"consultas (x1,25)."
+"aumentado en áreas de texto para consultas SQL (x2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Filas para áreas de texto"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Título de la ventana al seleccionar una base de datos."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Título de la ventana cuando no hay nada seleccionado."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Título predeterminado"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Título de la ventana cuando se ha seleccionado un servidor."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Título de la ventana cuando se ha seleccionado un tabla."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7806,27 +7849,27 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente del proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Listado de proxies de confianza para autorización/bloqueo de IP"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Directorio en el servidor donde puede subir archivos para importar."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Directorio desde donde se cargarán los archivos"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Permite hacer una búsqueda dentro de toda la base de datos."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Use búsquedas en la base de datos"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7835,28 +7878,28 @@ msgstr ""
"opciones situadas más abajo, sin importar la casilla de la derecha."
# see translation string 529
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Habilitar la pestaña Desarrolladores en la configuración"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Buscar si existe una versión más reciente"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Habilita la verificación de la última versión en la página principal de "
"phpMyAdmin."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Revise la versión"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7868,11 +7911,11 @@ msgstr ""
"el que está instalado phpMyAdmin no tiene acceso directo a internet. El "
"formato es: \"servidor:puerto\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "URL de proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7883,19 +7926,19 @@ msgstr ""
"una autenticación básica. Actualmente no se posee compatibilidad con otros "
"tipos de autenticación."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Nombre de usuario del proxy"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "La contraseña para autenticar con el proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Contraseña del proxy"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7903,45 +7946,47 @@ msgstr ""
"Habilite la compresión [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] para las operaciones de importación y exportación."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Introduzca su llave pública para el servicio reCaptcha de su dominio."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Llave púlica para reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Introduzca su llave privada para el servicio reCaptcha de su dominio."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Llave privada para reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Elija la acción predefinida en el envio de reportes de error."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Enviar reportes de error"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
+"Las consultas se ejecutan pulsando Enter (en lugar de Ctrl+Enter). Las "
+"nuevas líneas se insertarán con Shift+Enter."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
-msgstr ""
+msgstr "Ingrese ejecución de consultas en consola"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7949,16 +7994,15 @@ msgstr ""
"Activar el modo de «Configuración Zero» que le permite definir las tablas "
"del almacenamiento de configuración de phpMyAdmin automáticamente."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Activar modo «Configuración Zero»"
#: libraries/config/page_settings.class.php:138
-#, fuzzy
-#| msgid "Cannot save settings, submitted form contains errors!"
msgid "Cannot save settings, submitted configuration form contains errors!"
msgstr ""
-"No se pudo guardar la configuración, ¡el formulario enviado contiene errores!"
+"No se pudo guardar la configuración, ¡la configuración del formulario "
+"enviado contiene errores!"
#: libraries/config/setup.forms.php:40
msgid "Config authentication"
@@ -7978,44 +8022,44 @@ msgstr "Autenticación por HTTP"
msgid "Signon authentication"
msgstr "Autenticación por sesión"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Hoja de cálculo Open Document"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Rápido"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Personalizado"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Opciones de exportación de la base de datos"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV para datos de MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Texto Open Document"
@@ -8046,7 +8090,7 @@ msgstr ""
"Está utilizando la extensión «mysql», obsoleta para phpMyAdmin. Considere "
"instalar la extensión «mysqli»."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr "No se pudieron cargar los plugins de esquema. ¡Revise su instalación!"
@@ -8111,7 +8155,7 @@ msgstr "Crear tabla"
msgid "Number of columns"
msgstr "Número de columnas"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "No se cargaron los plugins de exportación. ¡Revise su instalación!"
@@ -8154,11 +8198,11 @@ msgstr "Tabla(s):"
msgid "Format:"
msgstr "Formato:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Opciones específicas al formato:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8166,52 +8210,52 @@ msgstr ""
"Desplácese hacia abajo para rellenar las opciones del formato elegido e "
"ignore las opciones de los demás formatos."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Conversión de codificación:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Filas:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Volcar algunas filas"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Fila con la que comenzar:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Volcar todas las filas"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Salida:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Guardar en el servidor en el directorio %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Plantilla del nombre del archivo:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ se convertirá en el nombre del servidor"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ se convertirá en el nombre de la base de datos"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8223,64 +8267,76 @@ msgstr ""
"transformaciones: %3$s. El texto restante se mantendrá como está. Referirse "
"a la %4$sFAQ%5$s para más detalles."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "usar esto para exportaciones futuras"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Conjunto de caracteres del archivo:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Compresión:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "comprimido con zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "comprimido con gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Ver salida como texto"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Exportar vistas como tablas"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Exportar cabeceras de tablas"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Renombrar las bases de datos/tablas/columnas exportadas"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Guardar salida a un archivo"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Omitir tablas mayores a"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Seleccionar base de datos"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Seleccionar tabla"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nombre de la nueva base de datos"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nombre de la nueva tabla"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Nombre de la columna antigua"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nombre de la nueva columna"
@@ -8387,10 +8443,8 @@ msgstr ""
"desde la primera:"
#: libraries/display_import.lib.php:338
-#, fuzzy
-#| msgid "Options"
msgid "Other Options:"
-msgstr "Opciones"
+msgstr "Otras opciones:"
#: libraries/display_import.lib.php:363
msgid "Format-Specific Options:"
@@ -8920,7 +8974,7 @@ msgid "Create an index on %s columns"
msgstr "Crear un índice en %s columna(s)"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Ocultar"
@@ -9055,11 +9109,6 @@ msgstr "De"
msgid "To"
msgstr "A"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Enviar"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Agregar prefijo a la tabla:"
@@ -9174,7 +9223,7 @@ msgstr "Rumano"
#: libraries/mysql_charsets.lib.php:243
msgid "Sinhalese"
-msgstr ""
+msgstr "Singalés"
#: libraries/mysql_charsets.lib.php:246
msgid "Slovak"
@@ -9219,10 +9268,8 @@ msgid "multilingual"
msgstr "multilingüe"
#: libraries/mysql_charsets.lib.php:273
-#, fuzzy
-#| msgid "File name"
msgid "Vietnamese"
-msgstr "Nombre del archivo"
+msgstr "Vietnamita"
#: libraries/mysql_charsets.lib.php:300
msgid "Central European"
@@ -9274,22 +9321,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Ocurrió un error al cargar la vista de navegación"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Nombre del grupo:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Eventos:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funciones:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procedimientos:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tablas:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Vistas:"
@@ -9306,16 +9359,14 @@ msgid "phpMyAdmin documentation"
msgstr "Documentación de phpMyAdmin"
#: libraries/navigation/NavigationHeader.class.php:207
-#, fuzzy
-#| msgid "Navigation panel"
msgid "Navigation panel settings"
-msgstr "Panel de navegación"
+msgstr "Ajustes del panel de navegación"
#: libraries/navigation/NavigationHeader.class.php:218
msgid "Reload navigation panel"
msgstr "Recargar el panel de navegación"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9324,27 +9375,27 @@ msgstr ""
"el rendimiento. Considere deshabilitar la agrupación de elementos en el "
"panel de navegación."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "Se encontró %s resultado adicional"
msgstr[1] "Se encontró %s resultado adicional"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filtrar bases de datos por nombre o expresión regular"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Vaciar filtro rápido"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtrar por nombre o expresión regular"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Colapsar todos"
@@ -9380,7 +9431,7 @@ msgstr "Nueva"
msgid "Database operations"
msgstr "Opciones de la base de datos"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Mostrar elementos ocultos"
@@ -9772,10 +9823,8 @@ msgstr "Renombrar base de datos a"
#: libraries/operations.lib.php:796 libraries/operations.lib.php:875
#: libraries/operations.lib.php:1213 libraries/rte/rte_routines.lib.php:1101
#: templates/columns_definitions/table_fields_definitions.phtml:47
-#, fuzzy
-#| msgid "Edit Privileges"
msgid "Adjust Privileges"
-msgstr "Editar los privilegios"
+msgstr "Ajustar los privilegios"
#: libraries/operations.lib.php:113
#, php-format
@@ -9850,10 +9899,8 @@ msgid "Storage Engine"
msgstr "Motor de almacenamiento"
#: libraries/operations.lib.php:995
-#, fuzzy
-#| msgid "Make all columns atomic"
msgid "Change all column collations"
-msgstr "Convertir todas las columnas a atómicas"
+msgstr "Cambiar todas las intercalaciones de columna"
#: libraries/operations.lib.php:1164
msgid "Copy table to (database.table)"
@@ -9972,16 +10019,14 @@ msgid "Can't copy table to same one!"
msgstr "¡No es posible copiar la tabla a la misma!"
#: libraries/operations.lib.php:1999
-#, fuzzy, php-format
-#| msgid "Table %s has been moved to %s."
+#, php-format
msgid "Table %s has been moved to %s. Privileges have been adjusted."
-msgstr "La tabla %s se movió a %s."
+msgstr "La tabla %s se movió a %s. Los privilegios se ajustaron."
#: libraries/operations.lib.php:2003
-#, fuzzy, php-format
-#| msgid "Table %s has been copied to %s."
+#, php-format
msgid "Table %s has been copied to %s. Privileges have been adjusted."
-msgstr "La tabla %s se copió a %s."
+msgstr "La tabla %s se copió a %s. Los privilegios se ajustaron."
#: libraries/operations.lib.php:2010
#, php-format
@@ -10096,7 +10141,6 @@ msgid "Please enter correct captcha!"
msgstr "¡Introduzca el captcha correcto!"
#: libraries/plugins/auth/AuthenticationCookie.class.php:423
-#| msgid "Cannot log in to the MySQL server"
msgid "You are not allowed to log in to this MySQL server!"
msgstr "¡No puede conectarse en este servidor MySQL!"
@@ -10328,22 +10372,16 @@ msgid "Report title:"
msgstr "Título del reporte:"
#: libraries/plugins/export/ExportPdf.class.php:230
-#, fuzzy
-#| msgid "Dumping data for table"
msgid "Dumping data"
-msgstr "Volcado de datos para la tabla"
+msgstr "Volcado de datos"
#: libraries/plugins/export/ExportPdf.class.php:285
-#, fuzzy
-#| msgid "structure"
msgid "View structure"
-msgstr "estructura"
+msgstr "Ver estructura"
#: libraries/plugins/export/ExportPdf.class.php:288
-#, fuzzy
-#| msgid "and then"
msgid "Stand in"
-msgstr "y luego"
+msgstr "Soporte"
#: libraries/plugins/export/ExportSql.class.php:91
msgid ""
@@ -10366,10 +10404,8 @@ msgstr ""
"por última vez y revisada por última vez"
#: libraries/plugins/export/ExportSql.class.php:161
-#, fuzzy
-#| msgid "Export method"
msgid "Export metadata"
-msgstr "Método de exportación"
+msgstr "Exportar metadatos"
#: libraries/plugins/export/ExportSql.class.php:176
msgid ""
@@ -10502,16 +10538,13 @@ msgid "It appears your database uses functions;"
msgstr "Parece que su base de datos utiliza funciones;"
#: libraries/plugins/export/ExportSql.class.php:978
-#, fuzzy
-#| msgid "Missing data for %s"
msgid "Metadata"
-msgstr "Faltan datos para %s"
+msgstr "Metadatos"
#: libraries/plugins/export/ExportSql.class.php:1055
-#, fuzzy, php-format
-#| msgid "Missing data for %s"
+#, php-format
msgid "Metadata for %s"
-msgstr "Faltan datos para %s"
+msgstr "Metadatos para %s"
#: libraries/plugins/export/ExportSql.class.php:1318
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1004
@@ -10596,7 +10629,7 @@ msgstr "Tabla:"
#: libraries/plugins/export/PMA_ExportPdf.class.php:118
msgid "Purpose:"
-msgstr ""
+msgstr "Propósito:"
#: libraries/plugins/export/PMA_ExportPdf.class.php:500
msgid "MIME"
@@ -10606,6 +10639,8 @@ msgstr "MIME"
msgid ""
"Update data when duplicate keys found on import (add ON DUPLICATE KEY UPDATE)"
msgstr ""
+"Actualizar datos cuando las llaves importadas están duplicadas (agregar ON "
+"DUPLICATE KEY UPDATE)"
#: libraries/plugins/import/ImportCsv.class.php:63
#: libraries/plugins/import/ImportOds.class.php:75
@@ -10634,13 +10669,13 @@ msgstr "Nombre de las columnas: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Parámetro no válido para importar CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10650,13 +10685,13 @@ msgstr ""
"están escritos correctamente, separados por comas y no encerrados entre "
"comillas."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "El formato de los datos CSV en la línea %d no es válido."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "El número de columnas de los datos CSV en la línea %d no es válido."
@@ -10785,22 +10820,16 @@ msgid "Data Dictionary"
msgstr "Diccionario de datos"
#: libraries/plugins/schema/SchemaPdf.class.php:99
-#, fuzzy
-#| msgid "neither of the above"
msgid "Order of the tables"
-msgstr "ninguno de los anteriores"
+msgstr "Orden de las tablas"
#: libraries/plugins/schema/SchemaPdf.class.php:103
-#, fuzzy
-#| msgid "Ascending"
msgid "Name (Ascending)"
-msgstr "Ascendente"
+msgstr "Nombre (Ascendente)"
#: libraries/plugins/schema/SchemaPdf.class.php:104
-#, fuzzy
-#| msgid "Descending"
msgid "Name (Descending)"
-msgstr "Descendente"
+msgstr "Nombre (Descendente)"
#: libraries/plugins/schema/dia/TableStatsDia.class.php:65
#: libraries/plugins/schema/eps/TableStatsEps.class.php:80
@@ -11038,6 +11067,7 @@ msgstr ""
#: libraries/plugins/transformations/input/Text_Plain_Iptobinary.class.php:32
msgid "Converts an Internet network address in (IPv4/IPv6) format to binary"
msgstr ""
+"Convierte una dirección de red de Internet en formato (IPv4/IPv6) a binario"
#: libraries/plugins/transformations/input/Text_Plain_JsonEditor.class.php:33
msgid "Syntax highlighted CodeMirror editor for JSON."
@@ -11052,16 +11082,12 @@ msgid "Syntax highlighted CodeMirror editor for XML (and HTML)."
msgstr "Sintaxis resaltada del editor CodeMirror para XML (y HTML)."
#: libraries/plugins/transformations/output/Text_Plain_Binarytoip.class.php:32
-#, fuzzy
-#| msgid ""
-#| "Converts an (IPv4) Internet network address into a string in Internet "
-#| "standard dotted format."
msgid ""
"Converts an Internet network address stored as a binary string into a string "
"in Internet standard (IPv4/IPv6) format."
msgstr ""
-"Convierte una dirección de red internet (IPv4) en una cadena en formato "
-"estándar de Internet con puntos."
+"Convierte una dirección de red de Internet, almacenada como una cadena "
+"binaria en una cadena en formato (IPv4/IPv6) estándar de Internet."
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:47
msgid "Formats text as JSON with syntax highlighting."
@@ -11071,47 +11097,47 @@ msgstr "Formatea el texto como una consulta SQL y resalta la sintaxis."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formatea el texto como XML y resalta la sintaxis."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Error: la relación ya existe."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Se añadió una relación CLAVE FORÁNEA."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Error: ¡no se pudo crear la clave ajena!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Error: Índice de columna(s) no encontrado."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Error: ¡Las funcionalidades relacionales están desactivadas!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Se añadió la relación interna."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Error: ¡no se añadió la relación interna!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Clave ajena eliminada."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Error: ¡no se pudo borrar la clave ajena!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Error: ¡no se pudo borrar la relación interna!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Se ha eliminado la relación interna."
@@ -11196,20 +11222,26 @@ msgstr "Guardando búsquedas de consulta-con-ejemplo"
msgid "Managing Central list of columns"
msgstr "Gestión de la lista central de columnas"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Recordar ordenamiento de la tabla"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Pasos rápidos para configurar funcionalidades avanzadas:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "Crear las tablas necesarias con %screate_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Crear un usuario pma y permitir acceso a estas tablas."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11218,33 +11250,36 @@ msgstr ""
"(config.inc.php), por ejemplo comenzando desde config."
"sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Inicie sesión en phpMyAdmin nuevamente para cargar el archivo de "
"configuración actualizado."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "Sin descripción"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
+"No tiene los privilegios necesarios para crear una base de datos denominada "
+"'phpmyadmin'. Puede ir a la pestaña de 'Operaciones' de cualquier base de "
+"datos para configurar el almacenamiento de configuración en phpMyAdmin."
-#: libraries/relation.lib.php:1880
-#, fuzzy, php-format
-#| msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
+#: libraries/relation.lib.php:1900
+#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-"%sCree%s las tablas en las que se guarda la configuración de phpMyAdmin."
+"%sCree%s una base de datos llamada 'phpmyadmin' y configure el "
+"almacenamiento de configuración en phpMyAdmin."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@@ -11252,7 +11287,7 @@ msgstr ""
"%sCrear%s las tablas de almacenamiento de configuración de phpMyAdmin en la "
"base de datos actual."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11761,10 +11796,9 @@ msgid "Sorry, we failed to restore the dropped routine."
msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada."
#: libraries/rte/rte_routines.lib.php:382
-#, fuzzy, php-format
-#| msgid "Routine %1$s has been modified."
+#, php-format
msgid "Routine %1$s has been modified. Privileges have been adjusted."
-msgstr "Se modificó la rutina %1$s."
+msgstr "Se modificó la rutina %1$s. Los privilegios se ajustaron."
#: libraries/rte/rte_routines.lib.php:387
#, php-format
@@ -12006,7 +12040,7 @@ msgstr "No existen eventos para mostrar."
msgid "Ignoring unsupported language code."
msgstr "Ignorando código de idioma no compatible."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Servidor actual:"
@@ -12298,7 +12332,6 @@ msgstr "Requiere SSL"
#: libraries/server_privileges.lib.php:759
#: libraries/server_privileges.lib.php:768
-#| msgid "Requires that a specific cipher method be used for a connection."
msgid "Requires that a specific cipher method be used for a connection."
msgstr "Se requiere un método específico de cifrado para usar la conexión."
@@ -12316,7 +12349,7 @@ msgstr "Requiere un certificado X509 válido con el tema presentado."
#: libraries/server_privileges.lib.php:818
msgid "Requires a valid X509 certificate."
-msgstr ""
+msgstr "Requiere de un certificado X509 válido."
#: libraries/server_privileges.lib.php:867
msgid "Resource limits"
@@ -12723,10 +12756,8 @@ msgid "Sent"
msgstr "Enviado"
#: libraries/server_status.lib.php:232
-#, fuzzy
-#| msgid "max. concurrent connections"
msgid "Max. concurrent connections"
-msgstr "Número máx. de conexiones concurrentes"
+msgstr "Máximas conexiones concurrentes"
#: libraries/server_status.lib.php:242
msgid "Failed attempts"
@@ -13881,16 +13912,13 @@ msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
#: libraries/sql.lib.php:1767
-#, fuzzy, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
+#, php-format
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
msgstr ""
"La selección actual no contiene una columna única. La edición de la grilla y "
-"los enlaces de copiado, eliminación y edición no están disponibles."
+"los enlaces de copiado, eliminación y edición no están disponibles. %s"
#: libraries/sql.lib.php:1778
#, fuzzy, php-format
@@ -14286,7 +14314,6 @@ msgid "Showing create queries"
msgstr "Mostrar las consultas de creación"
#: libraries/structure.lib.php:3429
-#| msgid "Relation view"
msgid "Relation view"
msgstr "Vista de relaciones"
@@ -14806,8 +14833,6 @@ msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s"
#: tbl_structure.php:66
#, php-format
-#| msgid "The column name '%s' is a MySQL reserved keyword."
-#| msgid_plural "The column names '%s' are MySQL reserved keywords."
msgid "The name '%s' is a MySQL reserved keyword."
msgid_plural "The names '%s' are MySQL reserved keywords."
msgstr[0] "El nombre «%s» es una palabra clave reservada de MySQL."
@@ -16542,11 +16567,6 @@ msgid "Too many connections are aborted."
msgstr "Demasiadas conexiones son abandonadas."
#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410
-#| msgid ""
-#| "Connections are usually aborted when they cannot be authorized. This article might help you track down "
-#| "the source."
msgid ""
"Connections are usually aborted when they cannot be authorized. this Article. You need to shutdown the "
-#| "server, remove the InnoDB log files, set the new value in my.cnf, start "
-#| "the server, then check the error logs if everything went fine. See also "
-#| "this blog entry"
msgid ""
"It is usually sufficient to set {innodb_log_file_size} to 25%% of the size "
"of {innodb_buffer_pool_size}. A very big {innodb_log_file_size} slows down "
@@ -16709,14 +16719,13 @@ msgstr ""
"Normalmente es suficiente definir {innodb_log_file_size} a el 25%% del valor "
"de {innodb_buffer_pool_size}. Un valor muy alto de {innodb_log_file_size} "
"reduce considerablemente la velocidad de la recuperación luego de una caída "
-"de la base de datos. Revise también este artículo. Necesitará cerrar el servidor, eliminar los archivos "
-"de registros InnoDB, definir el nuevo valor en el archivo 'my.cnf', iniciar "
-"el servidor y luego verificar los registros de error para asegurarse que no "
-"hubo inconvenientes. Revise también este artículo"
+"de la base de datos. Revise también este artículo. "
+"Necesitará cerrar el servidor, eliminar los archivos de registros InnoDB, "
+"definir el nuevo valor en el archivo 'my.cnf', iniciar el servidor y luego "
+"verificar los registros de error para asegurarse que no hubo inconvenientes. "
+"Revise también este artículo"
#: libraries/advisory_rules.txt:448
#, php-format
@@ -16733,17 +16742,6 @@ msgstr "Su reserva de búfers InnoDB es relativamente pequeña."
#: libraries/advisory_rules.txt:454
#, php-format
-#| msgid ""
-#| "The InnoDB buffer pool has a profound impact on performance for InnoDB "
-#| "tables. Assign all your remaining memory to this buffer. For database "
-#| "servers that use solely InnoDB as storage engine and have no other "
-#| "services (e.g. a web server) running, you may set this as high as 80%% of "
-#| "your available memory. If that is not the case, you need to carefully "
-#| "assess the memory consumption of your other services and non-InnoDB-"
-#| "Tables and set this variable accordingly. If it is set too high, your "
-#| "system will start swapping, which decreases performance significantly. "
-#| "See also this article"
msgid ""
"The InnoDB buffer pool has a profound impact on performance for InnoDB "
"tables. Assign all your remaining memory to this buffer. For database "
@@ -16898,9 +16896,6 @@ msgstr "«concurrent_insert» está definido como 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Borrar los datos de seguimiento para esta tabla"
-#~ msgid "Show versions"
-#~ msgstr "Mostrar versiones"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
diff --git a/po/et.po b/po/et.po
index 35a0232816..87400b7a35 100644
--- a/po/et.po
+++ b/po/et.po
@@ -5,11 +5,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
-"PO-Revision-Date: 2015-06-19 16:32+0200\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
+"PO-Revision-Date: 2015-06-29 08:33+0200\n"
"Last-Translator: Kristjan Räts
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2301,26 +2343,26 @@ msgstr ""
"režiimi.
- Ctrl+klõps või Alt+klõps (Mac: Shift+Option+klõps) eemaldab "
"veeru ORDER BY klauslist"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Klõpsa valimiseks/mittevalimiseks."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Veeru nime kopeerimiseks tee sellel topeltklõps."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Näita kõiki"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2329,12 +2371,12 @@ msgstr ""
"märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud "
"funktsionaalsus ei pruugi pärast salvestamist toimida."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Palun sisesta korrektne kuueteistkümnend sõne. Lubatud märgid on 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2342,128 +2384,128 @@ msgstr ""
"Kas sa soovid tõesti näha kõiki ridu? Suur tabel nagu see võib põhjustada "
"krahhi lehitsejas."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Algne pikkus"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "katkesta"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Katkestatud"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Õnnestus"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Impordi olek"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Kukuta failid siia"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Vali esmalt andmebaas"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Sa saad ka muuta enamikke väärtuseid,
kui teed nende sisul topeltkliki."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "Sa saad ka muuta enamikke väärtuseid,
kui klikid nende peal."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Mine lingile:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Kopeeri veeru nimi."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Genereeri parool"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Genereeri"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Muuda parooli"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Rohkem"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Näita paneel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Peida paneel"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Kuva peidetud navigeerimispaneeli elemendid."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Lingi peapaneeli"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Kustuta link peapaneeli"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Kõigi serveris olevate andmebaaside filtreerimiseks vajuta otsingutermini "
"järel Enterit"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr "Andmebaasis kõigi %s filtreerimiseks vajuta otsingutermini järel Enter"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "tabelid"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "vaated"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "toimingud"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "sündmused"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "funktsioonid"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "Valitud lehte ei leitud ajaloost, see võib olla aegunud."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2473,42 +2515,42 @@ msgstr ""
"Uusim versioon on %s, välja antud %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", viimane stabiilne versioon:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "ajakohane"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Loo vaade"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Saada vearaport"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Saada vearaport"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr "Saatuslik JavaScripti viga; kas sa soovid saata vearaporti?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Muuda raporteerimise sätteid"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Näita raporteerimise detaile"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2516,7 +2558,7 @@ msgstr ""
"Su eksport on mittetäielik, sest PHP skripti töötamiseks lubatud aeg on "
"liiga väike!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2525,58 +2567,58 @@ msgstr ""
"Hoiatus: sellel lehel oleval vormil on enam kui %d välja. Vormi saatmisel "
"võidakse mõne välja sisu eirata tänu PHP sättele max_input_vars."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Server tuvastas mõned vead!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Palun vaata selle akna alumisse serva."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignoreeri kõiki"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr "Palun oota, sinu seadistust saadetakse hetkel."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Kas käivitada see päring uuesti?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Kas sa soovid tõesti kustutada selle järjehoidja?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr "SQL silumisinfo hankimisel esines vigu."
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "%s päringut käivitati %s korda %s sekundiga."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr "edastati %s argument(i)"
-#: js/messages.php:594
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Kuva argumendid"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Peida argumendid"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr "Aega kulus:"
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2587,331 +2629,331 @@ msgstr ""
"töötada. Safaris põhjustab seda tavaliselt \"Privaartrežiimis lehitsemine"
"\" (\"Private Mode Browsing\")."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Eelmine"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Järgmine"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Täna"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Jaanuar"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Veebruar"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Märts"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Aprill"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mai"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Juuni"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Juuli"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "August"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "September"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Oktoober"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "November"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Detsember"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jaan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Veebr"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Märts"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Aprill"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Juuni"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Juuli"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dets"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Pühapäev"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Esmaspäev"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Teisipäev"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Kolmapäev"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Neljapäev"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Reede"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Laupäev"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Lau"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "E"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "K"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "N"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "R"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "L"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Näd"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "kalender-kuu-aasta"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "puudub"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Tund"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekund"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "See väli on kohustuslik"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Palun paranda see väli"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Palun sisesta korrektne e-posti aadress"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Palun sisesta korrektne URL"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Palun sisesta korrektne kuupäev"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Palun sisesta korrektne kuupäev (ISO)"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Palun sisesta korrektne number"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Palun sisesta korrektne krediitkaardi number"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Palun sisesta ainult numbrid"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Palun sisesta sama väärtus uuesti"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Palun sisesta kuni {0} märki"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Palun sisesta vähemalt {0} märki"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Palun sisesta väärtus pikkusega {0} kuni {1} tähte"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Palun sisesta väärtus vahemikust {0} kuni {1}"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Palun sisesta väärtus, mis on väiksem kui või võrdne {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Palun sisesta väärtus, mis on suurem kui või võrdne {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Palun sisesta korrektne kuupäev või kellaaeg"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Palun sisesta korrektne 16-nd väärtus"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2982,18 +3024,18 @@ msgstr "tunnis"
msgid "per day"
msgstr "päevas"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Olemasolev seadistusfail (%s) ei ole loetav."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Seadistusfailil on valed õigused. See ei tohiks olla kõikide jaoks "
"kirjutatav!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Fondi kõrgus"
@@ -3012,7 +3054,7 @@ msgid "Requery"
msgstr "Korduspäring"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3142,44 +3184,32 @@ msgid "Press Enter to execute query"
msgstr "Vajuta päringu käivitamiseks Enter"
#: libraries/Console.class.php:277
-#, fuzzy
-#| msgid "Ascending"
msgid "ascending"
-msgstr "Kasvav"
+msgstr "kasvav"
#: libraries/Console.class.php:280
-#, fuzzy
-#| msgid "Descending"
msgid "descending"
-msgstr "Kahanev"
+msgstr "kahanev"
#: libraries/Console.class.php:283
-#, fuzzy
-#| msgid "Order"
msgid "Order:"
-msgstr "Järjestus"
+msgstr "Järjestus:"
#: libraries/Console.class.php:289 templates/table/replace_preview.phtml:17
msgid "Count"
msgstr "Kogus"
#: libraries/Console.class.php:292
-#, fuzzy
-#| msgid "Execute every"
msgid "Execution order"
-msgstr "Käivita iga"
+msgstr "Käivitusjärjekord"
#: libraries/Console.class.php:295
-#, fuzzy
-#| msgid "Time taken:"
msgid "Time taken"
-msgstr "Aega kulus:"
+msgstr "Aega kulus"
#: libraries/Console.class.php:298
-#, fuzzy
-#| msgid "Order"
msgid "Order by:"
-msgstr "Järjestus"
+msgstr "Järjesta:"
#: libraries/Console.class.php:301
msgid "Group queries"
@@ -3202,7 +3232,7 @@ msgid "Count:"
msgstr "Kogus:"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3375,26 +3405,26 @@ msgstr "Uuenda järjehoidjat"
msgid "Delete bookmark"
msgstr "Kustuta järjehoidja"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Server ei vasta."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detailid…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus."
@@ -3468,6 +3498,16 @@ msgstr "Sõnad on eraldatud tühikuga (\" \")."
msgid "Inside tables:"
msgstr "Tabelitest:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Vali kõik"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Ära vali ühtegi"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Veerust:"
@@ -3521,7 +3561,7 @@ msgid "All"
msgstr "Kõik"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Ridade hulk:"
@@ -3818,7 +3858,7 @@ msgstr ""
"kustutatakse."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3829,34 +3869,13 @@ msgstr "Server"
msgid "View"
msgstr "Vaade"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktuur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3951,8 +3970,8 @@ msgstr "Kesksed veerud"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Andmebaasid"
@@ -4055,7 +4074,7 @@ msgid "Recent"
msgstr "Hiljutised"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Lemmikute tabel"
@@ -4124,16 +4143,6 @@ msgstr "Liitmised"
msgid "Sorting"
msgstr "Sorteerimine"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabelid"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Ülekande koordineerija"
@@ -4694,7 +4703,7 @@ msgstr "Maksimaalne: %s%s"
msgid "MySQL said: "
msgstr "MySQL vastas: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Selgita SQL"
@@ -4711,7 +4720,7 @@ msgstr "Analüüsi ja seleta kohal %s"
msgid "Without PHP Code"
msgstr "Ilma PHP koodita"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Loo PHP kood"
@@ -4824,17 +4833,6 @@ msgstr "Kasuta seda väärtust"
msgid "Rows"
msgstr "Ridu"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Andmed"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4997,7 +4995,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Seadistuses on valitud vale autentimise meetod:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5008,24 +5006,24 @@ msgstr ""
"häälestuses sätet [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. "
"phpMyAdmin kasutab hetkel andmebaasi serveri vaikimisi ajatsooni."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Peaksid uuendama %s %s või uuemale versioonile."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Viga: sobimatu sümbol"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS ülekirjutamise katse"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "võimalik turvaauk"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "tuvastati arvvõti"
@@ -5245,7 +5243,7 @@ msgid "Set value: %s"
msgstr "Sea väärtus: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Taasta vaikimisi väärtus"
@@ -5710,7 +5708,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Suurim teostamise aeg"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "Kasuta käsku %s"
@@ -5719,7 +5717,7 @@ msgstr "Kasuta käsku %s"
msgid "Save as file"
msgstr "Salvesta failina"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Faili märgitabel"
@@ -5746,15 +5744,15 @@ msgstr "Tihendamine"
msgid "Put columns names in the first row"
msgstr "Aseta veergude nimed esimesse ritta"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Veergusid ümbritseb"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Veergusid lõpetab"
@@ -5770,14 +5768,14 @@ msgstr "NULL asendaja"
msgid "Remove CRLF characters within columns"
msgstr "Eemalda veergudest CRLF märgid"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Veerud lõpetab"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Ridasid katkestab"
@@ -5847,7 +5845,7 @@ msgid "Save on server"
msgstr "Salvesta serverisse"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Kirjuta olemasolev(ad) fail(id) üle"
@@ -5864,8 +5862,8 @@ msgstr "Lisa AUTO_INCREMENT väärtus"
msgid "Enclose table and column names with backquotes"
msgstr "Aseta tabeli ja veeru nimed alumise ja ülemise jutumärgi vahele"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL ühilduvuse meetod"
@@ -5980,15 +5978,15 @@ msgid "Customize browse mode."
msgstr "Kohanda sirvimise viisi."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Kohanda vaikimisi valikuid."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6016,7 +6014,7 @@ msgstr "Ekspordi vaikimisi väärtused"
msgid "Customize default export options."
msgstr "Muuda vaikimisi ekspordi valikuid."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Funktsionaalsused"
@@ -6061,40 +6059,50 @@ msgstr "Navigeerimise paneel"
msgid "Customize appearance of the navigation panel."
msgstr "Muuda navigeerimise paneeli välimust."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigeerimispuu"
+
+#: libraries/config/messages.inc.php:249
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Muuda navigeerimispuud."
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Serverid"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Serverite näitamise valikud."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Tabelite näitamise valikud."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Peapaneel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Muud tuumsätted"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Sätted, mis ei sobi mujale."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Lehe pealkirjad"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6103,11 +6111,11 @@ msgstr ""
"[doc@faq6-27]dokumentatsioonist[/doc], kuidas kasutada kasutada eriliste "
"väärtuste kuvamiseks maagilisi sõnesid."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Turvalisus"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6115,23 +6123,23 @@ msgstr ""
"Palun pane tähele, et phpMyAdmin on lihtsalt kasutajaliides ja tema "
"funktsionaalsus ei piira MySQL'i."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Peamised sätted"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Autentimine"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Autentimise sätted."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Serveri seadistus"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6139,15 +6147,15 @@ msgstr ""
"Täpsem serveri seadistus, ära muuda neid valikuid, kui sa ei tea, mille "
"jaoks need on."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Sisesta serveri ühenduse parameetrid."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Seadistuse salvestuskoht"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6157,11 +6165,11 @@ msgstr ""
"lisafunktsionaalsusele. Vaata dokumentatsioonist [doc@linked-"
"tables]phpMyAdmin configuration storage[/doc]."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Muudatuste jälgimine"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6169,111 +6177,111 @@ msgstr ""
"Andmebaasis tehtud muudatuste jälgimine. Vajab phpMyAdmini seadistuse "
"salvestust."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Muuda ekspordi valikuid"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Muuda impordi vaikimisi väärtusi"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Muuda navigeerimise paneeli"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Muuda peapaneeli"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL päringud"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL päringuaken"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Kohanda linke, mida näidatakse SQL päringu kastides."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "SQL päringute sätted."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Käivitus"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Muuda esimest lehte."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Andmebaasi struktuur"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Vali need detailid, mida soovid näha andmebaasi struktuuris (tabelite "
"nimekirjas)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Tabeli struktuur"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Tabeli struktuuri sätted (veergude nimekiri)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Vahelehed"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Vali, kuidas sa tahaksid, et vahelehed toimiksid."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Näita seoseskeemi"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Paberi suurus"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Tekstiväljad"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Muuda teksti lisamise väljasid."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! tekst"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Kohanda vaikimisi valikuid"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Hoiatused"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Keela mõned phpMyAdmini poolt näidatavad hoiatused."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6281,15 +6289,15 @@ msgstr ""
"Luba [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] tihendamine importimistel "
"ja eksportimistel."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "iconv lisaparameetrid"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6297,11 +6305,11 @@ msgstr ""
"Kui see on lubatud, siis phpMyAdmin jätkab multi-käsu päringute sooritamist "
"ka sel juhul, kui üks päringutest ebaõnnestub."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignoreeri multi-käsu vigu"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6311,25 +6319,25 @@ msgstr ""
"ajapiirangut. See on hea moodus importida suuri faile, kuid siiski võib see "
"katkestada ülekanded."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Osaline importimine: luba katkestamine"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Ära katkesta INSERT vea puhul"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr "Lisa ON DUPLICATE KEY UPDATE"
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr "Värskenda andmeid, kui importimisel avastatakse topeltvõtmeid"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6337,69 +6345,69 @@ msgstr ""
"Vaikimisi formaat. Võta teadmiseks, et see nimekiri sõltub asukohast "
"(andmebaas, tabel) ja ainult siis, kui SQL on alati saadaval."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Imporditava faili formaat"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "kasuta LOCAL võtmesõna"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Veeru nimed esimeses reas"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Ära impordi tühje ridu"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Impordi valuutad ($5.00 -> 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Impordi protsendid sobiva kümnendarvuna (12.00% -> .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Päringute hulk, mida alguses vahele jätta."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Osaline importimine: jäta päringud vahele"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ära kasuta AUTO_INCREMENT null-väärtuste jaoks"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Liugurite algne asetus"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Mitu rida saab korraga lisada."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Lisatud ridade hulk"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Suurim hulk sümboleid, mida näidatakse mitte-arvulises veerus sirvimise "
"vaates."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Piira veeru sümboleid"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6410,11 +6418,11 @@ msgstr ""
"FALSE puhul on lihtne ära unustada välja logimast teistest serveritest, kui "
"ühendatud on mitme serveriga."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Kustuta väljalogimisel kõik küpsised"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6422,11 +6430,11 @@ msgstr ""
"Määra, kas [kbd]küpsisega[/kbd] autentimisel kutsutakse tagasi eelmine "
"sisselogimine või mitte."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Kutsu kasutajanimi uuesti"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6438,69 +6446,69 @@ msgstr ""
"seansi jaoks ja kustutatakse niipea, kui sulged veebilehitseja akna. Seda on "
"soovitatav kasutada mitteusaldusväärses keskkonnas."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Sisselogimise küpsise säilitamine"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Määra, kui kaua (sekundites) sisselogimise küpsis kehtib."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Sisselogimise küpsise kehtivus"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Kahekordista LONGTEXT veergude tekstiala suurust."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Suurem tekstiala LONGTEXT jaoks"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "SQL päringu kuvamiseks kasutatav suurim sümbolite hulk."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Näidatava SQL'i maksimaalne pikkus"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Kasutajad ei saa määrata kõrgemat väärtust"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Andmebaaside nimekirjas näidatavate andmebaaside suurim hulk."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Suurim hulk andmebaase"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
"Igal lehel navigeerimispuu esimesel tasemel näidatavate elementide arv."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Maksimaalne elementide arv esimesel tasemel"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr "Iga lehe navigeerimispuus näidatavate elementide arv."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Maksimaalne elementide arv harus"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6508,19 +6516,19 @@ msgstr ""
"Näidatavate ridade hulk tulemuses. Kui tulemus sisaldab rohkem ridu, siis "
"näidatakse \"Eelmine\" ja \"Järgmine\" linke."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Näidatavate ridade suurim hulk"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Tabeli nimekirjas näidatavate tabelite suurim hulk."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Suurim hulk tabeleid"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6528,66 +6536,66 @@ msgstr ""
"Baitide hulk, mida skriptil on lubatud kasutada, nt [kbd]32M[/kbd] ([kbd]0[/"
"kbd] - piiramatu)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Mälu piirang"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr "Asendab navigeerimispaneelil andmebaasi puu valijaga"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Kuva andmebaaside navigeerimine puuna"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr "Lingi peapaneeliga tõstes esile aktiivse andmebaasi või tabeli."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Näita logo navigeerimise paneelis."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Näita logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL, millele navigeerimise paneeli logo suunab."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Logo lingi URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
"Ava lingitud leht peaaknas ([kbd]main[/kbd]) või uues ([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Logo lingi sihtkoht"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Näita serveri valikut nevigeerimispaneeli ülaosas."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Näita serverite valikut"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Kiiravamisikooni sihtkoht"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Teise kiiravamisikooni sihtkoht"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6595,15 +6603,15 @@ msgstr ""
"Minimaalne filtrikastis näidatavate elementide (tabelid, protseduurid ja "
"sündmused) arv."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Minimaalne filtri kastis näidatavate elementide arv"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Andmebaasi filtri kastis näidatavate andmebaaside minimaalne hulk"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6611,103 +6619,153 @@ msgstr ""
"Grupeeri navigeerimispuu elemendid (kaartidel Andmebaasid ja Tabelid "
"määratud eraldaja alusel)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Grupeeri puu elemendid"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Sõne, mis eraldab andmebaasid kolme erinevasse puu tasandisse."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Andmebaasipuu eraldaja"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Sõne, mis eraldab tabelid kolme erinevasse puu tasandisse."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Tabelipuu eraldaja"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Maksimaalne tabelipuu kõrgus"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Tõsta kursori all olev server esile."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Luba esiletõstmine"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr "Kas lubada navigeerimispaneelil puu laiendamist või mitte."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Luba navigeerimispuu laiendamine"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Kuva puus tabelite loend"
+
+#: libraries/config/messages.inc.php:489
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Kas kuvada tabelid andmebaasi navigeerimispuus"
+
+#: libraries/config/messages.inc.php:490
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Kuva puus vaated"
+
+#: libraries/config/messages.inc.php:492
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Kas kuvada vaated andmebaasi navigeerimispuus"
+
+#: libraries/config/messages.inc.php:493
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Kuva puus funktsioonid"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr "Kas kuvada funktsioonid andmebaasi navigeerimispuus"
+
+#: libraries/config/messages.inc.php:496
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Kuva puus protseduurid"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr "Kas kuvada protseduurid andmebaasi navigeerimispuus"
+
+#: libraries/config/messages.inc.php:499
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Kuva puus sündmused"
+
+#: libraries/config/messages.inc.php:501
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Kas kuvada sündmused andmebaasi navigeerimispuus"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "Hiljuti kasutatud tabelite suurim hulk. Keelamiseks sisesta 0."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Lemmiktabelite suurim hulk. Keelamiseks sisesta 0."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Hiljuti kasutatud tabelid"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Need on lingid Muuda, Kopeeri ja Kustuta."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Kus näidata tabeli rea linke"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+msgstr "Määrab reaviitade kuvamise ka unikaalse võtme puudumisel."
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
-msgstr ""
+msgstr "Kuva ridade viidad ikkagi"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "Kasuta algset tabeli ja andmebaasi nimede sorteerimise järjekorda."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Algne järjekord"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Kasuta ainult ikoone, ainult teksti või mõlemat."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Tabeli navigeerimisriba"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Kasuta HTTP ülekannete parema kiiruse saavutamiseks GZip väljundi "
"puhverdamist."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip väljundi puhverdamine"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6715,19 +6773,19 @@ msgstr ""
"[kbd]SMART[/kbd] - st. TIME, DATE, DATETIME ja TIMESTAMP tüüpi veergude "
"kahanevat järjekorda. Muul juhul on need kasvavas järjekorras."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Vaikimisi sorteerimise järjekord"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Kasuta püsiühendusi MySQL andmebaasidesse."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Püsiühendused"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6736,11 +6794,11 @@ msgstr ""
"Keela vaikimisi hoiatus, mida näidatakse andmebaasi struktuuri lehel siis, "
"kui phpMyAdmini seadistuse salvestuse jaoks vajalikku tabeleid ei leitud."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Puudulikud phpMyAdmini seadistuse salvestuse tabelid"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6748,11 +6806,11 @@ msgstr ""
"Keela vaikimisi hoiatus, mis kuvatakse MySQL teegi ja serveri erinevuste "
"tuvastamisel."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Serveri/teegi erinevuse hoiatus"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6760,27 +6818,27 @@ msgstr ""
"Keela vaikimisi hoiatus, mida näidatakse struktuuri lehel siis, kui tabeli "
"veergude nimed on MySQLi reserveeritud sõnad."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "MySQL reserveeritud sõna hoiatus"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Kuidas kuvada menüü sakke"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Kuidas kuvada erinevate tegevuste linke"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Keela BLOB ja BINARY veergude muutmine."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Kaitse binaarseid veergusid"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6791,120 +6849,120 @@ msgstr ""
"päringu ajaloo näitamiseks Javascripti funktsioone (ajalugu kaob akna "
"sulgemisel)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Püsiv päringute ajalugu"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Mitu päringut ajaloos hoitakse."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Päringu ajaloo pikkus"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "Vali funktsioon, mida kasutatakse märgitabeli teisendamisel."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Ümberkodeerimise mootor"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Tabelite sirvimisel jäetakse meelde iga tabeli sortimisalus."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Jäta meelde tabeli sortimisalus"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Vaikimisi sortimisrežiim primaarvõtmega tabelitele."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Primaarvõtme vaimisi sortimisrežiim"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Korda päiseid iga X rea tagant, [kbd]0[/kbd] keelab selle funktsionaalsuse."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Korda päiseid"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Võrgustikmuutmine: tegevuse päästik"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Suhtestuskuva"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Kuvamise seaded"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Võrgustukmuutmine: salvesta kõik muudetud lahtrid"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Serveri kataloog, kuhu eksporditud failid salvestatakse."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Salvestamise kataloog"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Kui ei kasutata, siis jäta tühjaks."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Hosti autentimise järjekord"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Vaikimisi jäta tühjaks."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Hosti autentimise reeglid"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Luba paroolita sisselogimised"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Luba sisse logida 'root' kasutajana"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Seansi ajatsoon"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
"Määrab kasutatava ajatsooni; võib erineda andmebaasi serveri ajatsoonist"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP lihtsa autentimise ajal kuvatav ligipääsuala nimi."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP ligipääsuala"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6913,19 +6971,19 @@ msgstr ""
"[a@http://swekey.com]SweKey riistvara autentimise[/a] seadistusfaili asukoht "
"(see ei asu sinu dokumentide juurkaustas, soovitatav: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey seadistuse fail"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Kasutatav autentimise meetod."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentimise tüüp"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6933,11 +6991,11 @@ msgstr ""
"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]järjehoidja[/a] tugi, soovitatav: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Järjehoidja tabel"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -6945,32 +7003,32 @@ msgstr ""
"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Veeru teabe tabel"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Tihenda MySQL ühendus serveriga."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Tihenda ühendus"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Kuidas ühendada serveriga. Kui ei tea valida, siis jäta [kbd]tcp[/kbd]."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Ühenduse tüüp"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Kontrollkasutaja parool"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -6978,11 +7036,11 @@ msgstr ""
"Eriline MySQL kasutaja, mis on piiratud õigustega. Lisainfot saab [a@http://"
"wiki.phpmyadmin.net/pma/controluser]vikist[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Kontrollkasutaja"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -6990,11 +7048,11 @@ msgstr ""
"Seadistuse salvestuse säilitamise asendushost. Jäta tühjaks, kui soovid "
"kasutada juba määratud hosti."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Kontrollhost"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7004,15 +7062,15 @@ msgstr ""
"Vaikimisi pordi kasutamiseks jäta tühjaks; kui kontrollhost on sama mis "
"host, siis sisesta juba defineeritud port."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Kontrollport"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Peida andmebaasid, mis kattuvad regulaaravaldisega (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7021,15 +7079,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Keela INFORMATION_SCHEMA kasutus"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Peida andmebaasid"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7037,23 +7095,23 @@ msgstr ""
"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL päringu ajaloo tabel"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Hostinimi, kus MySQL server töötab."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Serveri hostinimi"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Väljalogimise URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7061,15 +7119,15 @@ msgstr ""
"Piirab andmebaasi salvestatud tabeli eelistuste hulka, vanimad sissekanded "
"kustutatakse automaatselt."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Suurim hulk tabeli eelistusi, mida salvestada"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Tabel näitepõhiste päringute salvestamiseks"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7077,11 +7135,11 @@ msgstr ""
"Jäta tühjaks, kui sa ei soovi salvestada näitepõhiseid päringuid, "
"soovitatav: [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Kesksete veergude tabel"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7089,15 +7147,15 @@ msgstr ""
"Jäta tühjaks, et keskseid veerge mitte kasutada, soovitatav: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Ürita ühendada ilma paroolita."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Ühenda ilma paroolita"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7107,30 +7165,30 @@ msgstr ""
"ette kurakaldkriipsu (\\). S.t kasuta [kbd]'my\\_db'[/kbd], aga mitte "
"[kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Näita ainult loendatud andmebaase"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Jäta tühjaks, kui ei kasuta 'config' autentimist."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "'config' autentimise parool"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: [kbd]pma__pdf_pages[/"
"kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF skeem: lehtede tabel"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7140,22 +7198,22 @@ msgstr ""
"Lisateavet leiad aadressilt [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/"
"a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Andmebaasi nimi"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Port, mida MySQL server kuulab. Jäta tühjaks, kui soovid kasutada vaikimisi "
"porti."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Serveri port"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7163,11 +7221,11 @@ msgstr ""
"Jäta tühjaks, kui seansside vahel puuduvad \"püsivad\" hiljuti kasutatud "
"tabelid, soovitatav: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Hiljuti kasutatud tabel"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7175,11 +7233,11 @@ msgstr ""
"Jäta tühjaks, kui sa ei soovi seansside vahelisi \"püsivad\" hiljuti "
"kasutatud tabeleid, soovitatav: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Lemmikute tabel"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7187,11 +7245,11 @@ msgstr ""
"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/relation]seoste "
"linkide[/a] tugi, soovitatav: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Seose tabel"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7199,33 +7257,33 @@ msgstr ""
"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]autentimise tüüpe[/a]."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Sisselogimise seansi nimi"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Sisselogimise URL"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Sokkel, mida MySQL server kuulab, jäta tühjaks, kui soovid kasutada "
"vaikimisi soklit."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Serveri sokkel"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Luba SSL ühendus MySQL serverisse."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Kasuta SSL'i"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7233,11 +7291,11 @@ msgstr ""
"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Disainer ja PDF skeem: tabeli koordinaadid"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7245,11 +7303,11 @@ msgstr ""
"Tabel, mis kirjeldab veergude näitamist. Jäta tühjaks, kui puudub tugi, "
"soovitatav: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Näita veergude tabelit"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7257,11 +7315,11 @@ msgstr ""
"Jäta tühjaks, kui seansside vahel puuduvad \"püsivad\" tabelite UI "
"eelistused, soovitatav: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "UI eelistuste tabel"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7269,42 +7327,42 @@ msgstr ""
"Kas lisada lause DROP DATABASE IF EXISTS andmebaasi loomise logisse "
"esimeseks."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Lisa DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
"Kas lisada lause DROP TABLE IF EXISTS tabeli loomise logisse esimeseks."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Lisa DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr "Kas lisada lause DROP VIEW IF EXISTS vaate loomise logisse esimeseks."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Lisa DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Määrab lausete nimekirja, mida kasutatakse uute versioonide loomisel "
"automaatselt."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Käsud, mida jälgida"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7312,22 +7370,22 @@ msgstr ""
"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL päringu jälgimise tabel"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Kas jälgimise mehhanism loob versioneerib tabelida ja vaated automaatselt."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Loo versioonid automaatselt"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7335,11 +7393,11 @@ msgstr ""
"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Kasutaja eelistusi säilitav tabel"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7349,11 +7407,11 @@ msgstr ""
"tabel kui ka kasutajate gruppide tabel. Jättes ühe neist tühjaks, keelad "
"menüüde kohandamise; soovitatav: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Kasutajate tabel"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7363,11 +7421,11 @@ msgstr ""
"tabel kui ka kasutajate tabel. Jättes ühe neist tühjaks, keelad menüüde "
"kohandamise; soovitatav: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Kasutajagruppide tabel"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7375,15 +7433,15 @@ msgstr ""
"Jäta tühjaks, et keelata navigeerimiselementide peitmine ja kuvamine, "
"soovitatav: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Peidetud navigeerimiselementide tabel"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "'config' autentimise kasutaja"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7391,19 +7449,19 @@ msgstr ""
"Selle serveri kasutajasõbralik kirjeldus. Kui jätad tühjaks, siis näidatakse "
"selle asemel hostinime."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Selle serveri sõnaline nimi"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Kas kasutajale peaks näitama \"näita kõiki (ridu)\" nuppu."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Luba näidata kõiki ridu"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7413,76 +7471,76 @@ msgstr ""
"autentimist, sest parool on seadistusfailis raskesti kodeeritud. See ei "
"piira sama käsu otse käivitamist."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Näita parooli muutmise vormi"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Näita andmebaasi loomise vormi"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr "Näita või peida kõigi tabelite kommentaaride veerg."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr "Kuva tabeli kommentaarid"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "Näita või peida kõikides tabelites loomise ajatempli veerg."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Näita loomise ajatemplit"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "Näita või peida kõikides tabelites viimase uuendamise ajatempli veerg."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Näita viimase uuendamise ajatemplit"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Näita või peida kõikides tabelites viimase kontrolli ajatemplit näitav veerg."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Näita viimase kontrolli ajatemplit"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr "Määrab, kas muutmisel/lisamisel näidata väljasid."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Näita välja tüüpe"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Näita funktsiooni väljasid muutmisel/lisamisel."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Näita funktsiooni väljasid"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Kas näidata vihjet või mitte."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Näita vihjet"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7490,63 +7548,63 @@ msgstr ""
"Näita linki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"väljundisse."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Näita phpinfo() linki"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Näita detailset MySQL serveri teavet"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Määrab, kas phpMyAdmini poolt koostatud SQL päringuid näidatakse."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Näita SQL päringuid"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "Määrab, kas päringukast jääb ekraanile pärast päringu saatmist."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Säilita päringu kast"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "Luba näidata andmebaasi ja tabeli statistikat (nt ruumi kasutus)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Näita statistikat"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Märgi kasutatud tabelid ja võimalda näidata andmebaase koos lukustatud "
"tabelitega."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Jäta lukustatud tabelid vahele"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
"Keela vaikimisi hoiatus, mis kuvatakse avalehel Suhosin'i tuvastamisel."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin'i hoiatus"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7555,11 +7613,11 @@ msgstr ""
"Keela vaikimisi hoiatus, mida näidatakse põhilehel siis, kui PHP sätte "
"session.gc_maxlifetime väärtus on väiksem kui `LoginCookieValidity` väärtus."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Sisselogimise küpsise kehtivuse hoiatus"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7567,11 +7625,11 @@ msgstr ""
"Tekstiala suurus (veerud) muutmise vaates. See väärtus tõstetakse esile SQL "
"päringu tekstialades (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Tekstiala veerud"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7579,31 +7637,31 @@ msgstr ""
"Tekstiala suurus (read) muutmise vaates. See väärtus tõstetakse esile SQL "
"päringu tekstialades (*2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Tekstiala read"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Veebilehitseja akna pealkiri, kui valitud on andmebaas."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Veebilehitseja akna pealkiri, kui valitud pole mitte midagi."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Vaikimisi pealkiri"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Veebilehitseja akna pealkiri, kui valitud on server."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Veebilehitseja akna pealkiri, kuid valitud on tabel."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7615,27 +7673,27 @@ msgstr ""
"Forwarded-For) päist, mis tuleb proksist 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Usaldusväärsete prokside nimekiri lubatud/keelatud IP'de jaoks"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Kataloog serveris, kuhu saad importimiseks faile üles laadida."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Üleslaadimise kataloog"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Luba otsida tervest andmebaasist."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Kasuta andmebaasi otsingut"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7643,26 +7701,26 @@ msgstr ""
"Kui keelatud, siis kasutajad ei saa kasutada ühtegi allolevat valikut, "
"sõltumata paremal asuvast märkeruudust."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Luba sätetes kujundaja vaheleht"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Kontrolli uusimat versiooni"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Lubab phpMyAdmini pealehel kontrollida viimast versiooni."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Versiooni kontroll"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7674,11 +7732,11 @@ msgstr ""
"on paigaldatud, ei oma otseühendust Internetiga. Formaat on \"hostinimi:port"
"\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Proksi aadress"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7688,19 +7746,19 @@ msgstr ""
"Kui kasutajanimi on antud, kastutatakse lihtsa autentimise (Basic "
"Authentication) meetodit. Muud meetodid ei ole hetkel toetatud."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Proksi kasutajanimi"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Salasõna proksi serveris autentimiseks."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Proksi parool"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7708,35 +7766,35 @@ msgstr ""
"Luba [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tihendamine "
"importimistel ja eksportimistel."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Sisesta oma domeeni reCaptcha teenusele oma avalik võti."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "reCaptcha avalik võti"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Sisesta oma domeeni reCaptcha teenusele oma salajane võti."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "reCaptcha salajane võti"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Vali vaikimisi tegevus vearaportite saatmisel."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Saada vearaport"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7744,11 +7802,11 @@ msgstr ""
"Päringud käivitatakse klahvi Enter vajutamisel (Ctrl+Enter asemel). "
"Reavahetuseks kasuta kombinatsiooni Shift+Enter."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Enter käivitab päringud konsoolil"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7756,7 +7814,7 @@ msgstr ""
"Luba Nullseadistuse režiim, mis lubab sul häälestada phpMyAdmin'i "
"seadistuste salvestamise tabelid automaatselt."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Luba Nullseadustuse režiim"
@@ -7780,44 +7838,44 @@ msgstr "HTTP autentimine"
msgid "Signon authentication"
msgstr "Sisselogimise (signon) autentimine"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV kasutades LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument tabel"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Kiire"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Kohandatud"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Andmebaasi eksportimise valikud"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV MS Exceli jaoks"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
@@ -7848,7 +7906,7 @@ msgstr ""
"Sa kasutad mysql laiendust, mis phpMyAdmin'is on iganenud. Palun kaalu "
"mysqli laienduse paigaldamist."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr "Skeemi pluginaid ei suudetud laadida, palun kontrolli oma paigaldust!"
@@ -7913,7 +7971,7 @@ msgstr "Loo tabel"
msgid "Number of columns"
msgstr "Veergude arv"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Ei saanud laadida eksportimise pluginaid, palun kontrolli oma paigaldust!"
@@ -7957,11 +8015,11 @@ msgstr "Tabel(id):"
msgid "Format:"
msgstr "Formaat:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Formaadipõhised valikud:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -7969,52 +8027,52 @@ msgstr ""
"Keri alla, et näha valikuid valitud formaadi jaoks ja ignoreeri teiste "
"formaatide valikuid."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Kodeerimise teisendus:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Read:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Loo mõnest reast tõmmis"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Rida alustab kohast:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Loo tõmmis kõikidest ridadest"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Väljund:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Salvesta serveri %s kataloogi"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Faili nime mall:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ saab serveri nimeks"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ saab andmebaasi nimeks"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ saab tabeli nimeks"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8025,64 +8083,74 @@ msgstr ""
"aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud "
"tekst jääb nii nagu see on. Detailide lugemiseks vaata %4$sKKK%5$s'd."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "kasuta seda edasistel eksportimistel"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Faili märgitabel:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Tihendamine:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zipitud"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzipitud"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Vaata väljundit tekstina"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Ekspordi andmebaasid eraldi failidena"
+
+#: libraries/display_export.lib.php:662
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Ekspordi tabelid eraldi failidena"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Nimeta eksporditud andmebaasid/tabelid/veerud ümber"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Salvesta väljund failisse"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Jäta vahele tabelid, mis on suuremad kui"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Vali andmebaas"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Vali tabel"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Uue andmebaasi nimi"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Uue tabeli nimi"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Vana veeru nimi"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Uue veeru nimi"
@@ -8697,7 +8765,7 @@ msgid "Create an index on %s columns"
msgstr "Loo indeks %s veergudesse"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Peida"
@@ -8831,11 +8899,6 @@ msgstr "Kohast"
msgid "To"
msgstr "Kohta"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Saada"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Lisa tabeli eesliide:"
@@ -9048,22 +9111,27 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Navigeerimiskuva laadimisel toimus viga"
#: libraries/navigation/Navigation.class.php:192
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Grupid:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Sündmused:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funktsioonid:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Toimingud:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tabelid:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Vaated:"
@@ -9087,7 +9155,7 @@ msgstr "Navigeerimispaneeli seaded"
msgid "Reload navigation panel"
msgstr "Lae navigeerimise paneel uuesti"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9095,27 +9163,27 @@ msgstr ""
"Navigeerimispaneelil on suured elementide grupid, mis võivad mõjutada "
"jõudlust. Kaalu navigeerimispaneelil elementide grupeerimise keelamist."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s tulemus leitud"
msgstr[1] "%s tulemust leitud"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filtreeri andmebaase nime või regulaaravaldise alusel"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Puhasta kiire filter"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtreeri nime või regulaaravaldise alusel"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Ahenda kõik"
@@ -9149,7 +9217,7 @@ msgstr "Uus"
msgid "Database operations"
msgstr "Toimingud andmebaasiga"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Kuva peidetud elemendid"
@@ -10368,13 +10436,13 @@ msgstr "Veeru nimed: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Vale parameeter CSV importimiseks: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10383,13 +10451,13 @@ msgstr ""
"Täpsustati vale veerg (%s)! Veendu, et veergude nimed on õigesti kirjutatud, "
"komadega eraldatud ja pole asetatud jutumärkide vahele."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Vale CSV sisendi formaat %d.-ndal real."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Vale veeru hulk CSV sisendis %d.-ndal real."
@@ -10776,47 +10844,47 @@ msgstr "Vormindab teksti süntaksi esiletõstuga JSON objektiks."
msgid "Formats text as XML with syntax highlighting."
msgstr "Vormindab teksti süntaksi esiletõstuga XML failiks."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Viga: seos on juba olemas."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY seos on lisatud."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Viga: välisvõtme (FOREIGN KEY) seose lisamine nurjus!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Viga: veeru(de)l puuduv(ad) indeks(id)."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Viga: Seoste funksionaalsusega seonduv on keelatud!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Sisemine seos on loodud."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Viga: Sisemise seose lisamine nurjus!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Välisvõtme (FOREIGN KEY) seos on kustutatud."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Viga: Välisvõtme (FOREIGN KEY) seose kustutamine nurjus!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Viga: Sisemise seose kustutamine nurjus!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Sisemine seos on kustutatud."
@@ -10902,20 +10970,25 @@ msgstr "Salvestatakse näidispäringu otsinguid"
msgid "Managing Central list of columns"
msgstr "Veergude keskse nimekirja haldamine"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Disaineri seadistuse meeldejätmine"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Täpsema funktsionaalsuse seadistamise kiirsammud:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "Loo vajalikud tabelid %screate_tables.sql failiga."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Loo pma kasutaja ja anna juurdepääs nendele tabelitele."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -10923,15 +10996,15 @@ msgstr ""
"Luba täpsem funktsionaalsus häälestusfailis (config.inc.php). "
"Näiteks alustades config.sample.inc.php failist."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "kirjeldus puudub"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
@@ -10941,7 +11014,7 @@ msgstr ""
"suvalise andmebaasi kaardile 'Operatsioonid' ja määrata phpMyAdmini "
"häälestuse salvestamine sinna."
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -10950,14 +11023,14 @@ msgstr ""
"%sLoo%s andmebaas 'phpmyadmin' ja häälesta phpMyAdmini seadistuse "
"salvestamine sinna."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
"%sLoo%s phpMyAdmini seadistuse salvestuse tabelid aktiivses andmebaasis."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "%sLoo%s puuduvad phpMyAdmini seadistuse salvestuse tabelid."
@@ -11700,7 +11773,7 @@ msgstr "Pole sündmusi, mida näidata."
msgid "Ignoring unsupported language code."
msgstr "Tundmatu keele kood jäeti vahele."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Praegune server:"
@@ -13504,30 +13577,24 @@ msgid "Showing as PHP code"
msgstr "Näitan PHP koodina"
#: libraries/sql.lib.php:1767
-#, fuzzy, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
+#, php-format
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
msgstr ""
-"Valik ei sisalda unikaalset veergu. Ruudustiku muutmisega, märkeruutudega, "
-"muutmisega, kopeerimisega ja kustutamisega seotud funksionaalsus ei ole "
-"saadaval."
+"Praegune valik ei sisalda unikaalset veergu. Võrgustikmuutmisega, "
+"märkekastide, hariliku muutmisega, kopeerimisega ja kustutamisega seotud "
+"funksionaalsus ei ole saadaval. %s"
#: libraries/sql.lib.php:1778
-#, fuzzy, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
+#, php-format
msgid ""
"Current selection does not contain a unique column. Grid edit, Edit, Copy "
"and Delete features may result in undesired behavior. %s"
msgstr ""
-"Valik ei sisalda unikaalset veergu. Ruudustiku muutmisega, märkeruutudega, "
-"muutmisega, kopeerimisega ja kustutamisega seotud funksionaalsus ei ole "
-"saadaval."
+"Praegune valik ei sisalda unikaalset veergu. Võrgustik- ja hariliku "
+"muutmisega, kopeerimise ja kustutamisega seotud võimalused võivad põhjustada "
+"soovimatut käitumist. %s"
#: libraries/sql.lib.php:1817
#, php-format
@@ -16412,9 +16479,6 @@ msgstr "concurrent_insert väärtuseks on määratud 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Kustuta selle tabeli jälgimise andmed"
-#~ msgid "Show versions"
-#~ msgstr "Näita versioone"
-
#~ msgid "Table Structure"
#~ msgstr "Tabeli struktuur"
@@ -17756,9 +17820,6 @@ msgstr "concurrent_insert väärtuseks on määratud 0"
#~ msgid "Reset"
#~ msgstr "Nulli"
-#~ msgid "Show processes"
-#~ msgstr "Näita protsesse"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Lähtesta"
diff --git a/po/eu.po b/po/eu.po
index 01b0069735..a5561897b5 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-31 14:23+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Dena erakutsi"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Linestring"
msgid "Original length"
msgstr "Lerro kateak"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Deuseztatua"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Fitxategiak inportatu"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Taulak hautatu"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Datu-baserik ez"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Zutabe izenak"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
#, fuzzy
msgid "Generate"
msgstr "Egilea:"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Astel"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Dena erakutsi"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Indexes"
msgid "Hide Panel"
msgstr "Indizeak"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Sareta erakutsi"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
msgid "Link with main panel"
msgstr "Datu-basea esportatzeko aukerak"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
msgid "Unlink from main panel"
msgstr "Datu-basea esportatzeko aukerak"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Taulak"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Ikusipegia"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
msgid "procedures"
msgstr "Prozesuak"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
msgid "events"
msgstr "Bidalita"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "Funtzioak"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2654,135 +2696,135 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Datu-baserik ez"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Zerbitzariaren bertsioa"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "Zerbitzariaren hautaketa"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Erlazioen ezaaugarri orokorrak"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "Taulak erakutsi"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ezikusi"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Kontsulta hau hemen berriz erakutsi"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "Benetan nahi al duzu \"%s\" exekutatzea?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL kontsulta"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Taularen iruzkinak"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "SQL kontsulta"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Aurrekoa"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2790,96 +2832,96 @@ msgid "Next"
msgstr "Hurrengoa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gutira"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarioa "
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Api"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mai"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Eka"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Uzt"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Abu"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Urr"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2887,78 +2929,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Abe"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Iga"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Astel"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Astea"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Osti"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2966,199 +3008,199 @@ msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Lar"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Iga"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Astel"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Astea"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Astez"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Oste"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Osti"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lar"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Batez"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lanean"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "segunduko"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Testu-eremua erabili"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please select a database"
msgid "Please enter a valid date"
msgstr "Datu-base bat hautatu mesedez"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please choose a page to edit"
msgid "Please enter a valid date or time"
msgstr "Aukeratu editatzeko orria mesedez"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3229,16 +3271,16 @@ msgstr "orduko"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -3259,7 +3301,7 @@ msgid "Requery"
msgstr "kontsultan"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3476,7 +3518,7 @@ msgid "Count:"
msgstr "Zutabea"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3684,25 +3726,25 @@ msgstr "Erakutsi laster-marka"
msgid "Delete bookmark"
msgstr "Bilatu"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3778,6 +3820,17 @@ msgstr "Hitzak zuriune karakterrarekin berezituta daude (\" \")."
msgid "Inside tables:"
msgstr "Taulen barnean:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Dena hautatu"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+#, fuzzy
+msgid "Unselect All"
+msgstr "Desautatu dena"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Zutabearen barnean:"
@@ -3844,7 +3897,7 @@ msgid "All"
msgstr "Guztiak"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
@@ -4166,7 +4219,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Zerbitzaria"
@@ -4177,34 +4230,13 @@ msgstr "Zerbitzaria"
msgid "View"
msgstr "Ikusipegia"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Egitura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4301,8 +4333,8 @@ msgstr "Gehitu/ezabatu irizpide-zutabea"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Datu-baseak"
@@ -4420,7 +4452,7 @@ msgid "Recent"
msgstr "Reset egin"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4499,16 +4531,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Taulak"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -5030,7 +5052,7 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL-ek zera dio: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL-a azaldu"
@@ -5047,7 +5069,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "PHP Koderik gabe"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP kodea sortu"
@@ -5165,17 +5187,6 @@ msgstr "Erabili balio hau"
msgid "Rows"
msgstr "Errenkadak"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Datuak"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5356,7 +5367,7 @@ msgstr "Zerbitzaria"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5364,24 +5375,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5625,7 +5636,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6035,7 +6046,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6045,7 +6056,7 @@ msgstr "Sententziak"
msgid "Save as file"
msgstr "Bidali"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Fitxategiaren karaktereen kodeketa:"
@@ -6075,17 +6086,17 @@ msgstr "Trinkotzea"
msgid "Put columns names in the first row"
msgstr "Eremuen izenak lehenengo errenkadan jarri"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Eremuak honekin mugatuta:"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6105,16 +6116,16 @@ msgstr "NULL ordezkatu honen ordez:"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Honetan bukatutako lerroak: "
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6196,7 +6207,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Gainean idatzi aurretik badiren fitxategiak"
@@ -6216,8 +6227,8 @@ msgstr "Gehitu AUTO_INCREMENT balioa"
msgid "Enclose table and column names with backquotes"
msgstr "\"Backquotes\" erabili taula eta eremuen izenekin "
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6337,16 +6348,16 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
msgid "Customize default options."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV datuak"
@@ -6376,7 +6387,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6426,174 +6437,184 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+msgid "Navigation tree"
+msgstr "Datu-basea esportatzeko aukerak"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+msgid "Customize the navigation tree."
+msgstr "Datu-basea esportatzeko aukerak"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
#, fuzzy
msgid "Servers"
msgstr "Zerbitzaria"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Indexes"
msgid "Main panel"
msgstr "Indizeak"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Orri zenbakia:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Dokumentazioa"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "Dokumentazioa"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid "Customize export options"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
msgid "Customize navigation panel"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
msgid "Customize main panel"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "Egoera"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
msgid "Customize startup page."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "Datu-baseak"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6601,200 +6622,200 @@ msgstr ""
msgid "Table structure"
msgstr "Datu-baseak"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Taula"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Erlazio-eskema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Paperaren tamaina"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Testu-eremua erabili"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
msgid "Customize text input fields."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
msgid "Customize default options"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Eremuen izenak lehenengo errenkadan jarri"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Gehitu AUTO_INCREMENT balioa"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6802,1131 +6823,1187 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
msgid "Maximum items on first level"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
#, fuzzy
msgid "Memory limit"
msgstr "Baliabideen mugak"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Sareta erakutsi"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Show logo in navigation panel."
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Taularen epigrafea"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Taulak erakutsi"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Sareta erakutsi"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Sareta erakutsi"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Sareta erakutsi"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Connections since last refresh"
+msgid "Show functions in tree"
+msgstr "Konexio azken freskatzetik"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Erakutsi prozesuak"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Sareta erakutsi"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Sareta erakutsi"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Taula aztertu"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Taularen \"Order By\" aldatu"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Taularen epigrafea"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Taula berrizendatu izen honetara: "
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Erlazio-eskema"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Saioaren balioa"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentazioa"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Ezinezkoa MySql zerbitzarian saioa hastea"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "Konexioak"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Edozein ostalari"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Edozein ostalari"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Datu-baserik ez"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Pasahitza ez aldatu"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Datu-basea"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Taula aztertu"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Aldagaiak"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Taula konpondu"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr ""
"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Zutabearen iruzkinak erakusten"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Sententziak"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
msgid "Automatically create versions"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Taulak erabili"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Host taula erabili"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Taularen iruzkinak"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP informazioa erakutsi"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
msgid "Show field types"
msgstr "Taulak erakutsi"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Sareta erakutsi"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "Kontsulta osoak erakutsi"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Errenkadaren estatistikak"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Lehenetsia"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7934,52 +8011,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7987,85 +8064,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Erabiltzaile-izena:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Pasahitza"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -8091,46 +8168,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentazioa"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "MS Excel datuentzako CSV"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8161,7 +8238,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -8237,7 +8314,7 @@ msgstr "Orri berri bat sortu"
msgid "Number of columns"
msgstr "Errenkada kopurua orriko"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8292,69 +8369,69 @@ msgstr "Taulak"
msgid "Format:"
msgstr "Formatoa"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Eraldaketen hobespenak"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Errenkadak"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Zerbitzariren %s direktorioan gorde"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Txantiloi-fitxategiaren izena"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8362,84 +8439,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Fitxategiaren karaktereen kodeketa:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Trinkotzea"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zipatuta\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzip-ez trinkotuta\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Bidali"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Taula berri bat sortu %s datu-basean"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "horizontal (goiburukoak biratuta)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Bidali"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Taulak hautatu"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Taulak hautatu"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database"
msgid "New database name"
msgstr "Datu-basea"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Taularik ez"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Zutabe izenak"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9009,7 +9098,7 @@ msgid "Create an index on %s columns"
msgstr "Indize bat sortu %s zutabetan"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -9155,11 +9244,6 @@ msgstr "Osti"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Bidali"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Replace table prefix"
@@ -9383,26 +9467,32 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Zutabe izenak"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
msgid "Events:"
msgstr "Bidalita"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "Funtzioak"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
msgid "Procedures:"
msgstr "Prozesuak"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Taulak"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9430,39 +9520,39 @@ msgstr "Datu-basea esportatzeko aukerak"
msgid "Reload navigation panel"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Taularen \"Order By\" aldatu"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Bidali"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Taularen \"Order By\" aldatu"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9500,7 +9590,7 @@ msgstr ""
msgid "Database operations"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10772,26 +10862,26 @@ msgstr "Zutabe izenak"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11186,60 +11276,60 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Aldaketak gorde dira"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Ezinezkoa fitxategia irakurtzea"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
msgid "Internal relation has been added."
msgstr "Barne-erlazioak"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Ezinezkoa fitxategia irakurtzea"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Aldaketak gorde dira"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Ezinezkoa fitxategia irakurtzea"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Ezinezkoa fitxategia irakurtzea"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
msgid "Internal relation has been removed."
msgstr "Barne-erlazioak"
@@ -11339,54 +11429,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Taula berrizendatu izen honetara: "
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "Deskribapenik ez"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12180,7 +12276,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17289,9 +17385,6 @@ msgstr ""
#~ msgid "Server traffic (in KiB)"
#~ msgstr "Zerbitzariaren trafikoa (KiBtan)"
-#~ msgid "Connections since last refresh"
-#~ msgstr "Konexio azken freskatzetik"
-
#~ msgid "Questions since last refresh"
#~ msgstr "Galdera azken freskatzetik"
@@ -17518,9 +17611,6 @@ msgstr ""
#~ msgid "Reset"
#~ msgstr "Reset egin"
-#~ msgid "Show processes"
-#~ msgstr "Erakutsi prozesuak"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reset egin"
diff --git a/po/fa.po b/po/fa.po
index 4b8932488d..d7967e513e 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-12-18 09:39+0200\n"
"Last-Translator: HM
to toggle column's visibility"
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "با کلیک بر روی منوی کشویی
فلش به ضامن دید ستون"
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "نمايش همه"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2454,53 +2497,53 @@ msgstr ""
"این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، "
"کپی و حذف ممکن است کار نکنند."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "موقعیت اصلی"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "لغو کردن"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import files"
msgid "Import status"
msgstr "وارد کردن فایل ها"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Select Tables"
-#: js/messages.php:502
+#: js/messages.php:503
#, fuzzy
#| msgid ""
#| "You can also edit most columns
by clicking directly on their content."
@@ -2508,7 +2551,7 @@ msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید."
-#: js/messages.php:505
+#: js/messages.php:506
#, fuzzy
#| msgid ""
#| "You can also edit most columns
by clicking directly on their content."
@@ -2516,112 +2559,112 @@ msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید."
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
msgstr "به لینک بروید"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "نام ستونها"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "توليد کن"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "بیشتر"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "نمايش همه"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Hide indexes"
msgid "Hide Panel"
msgstr "مخفی کردن فهرست ها"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden navigation tree items."
msgstr "Show grid"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize text input fields"
msgid "Link with main panel"
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize text input fields"
msgid "Unlink from main panel"
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "جدولها"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "نمایش"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Processes"
msgid "procedures"
msgstr "پروسه ها"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Events"
msgid "events"
msgstr "رویدادها"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "تابع"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2631,134 +2674,134 @@ msgstr ""
"نسخه %s و در %s بیرون آمده است."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr "نسخه قبلی:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "به روز"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "نسخه سرور"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
#| msgid "Server port"
msgid "Send Error Report"
msgstr "پورت سرور"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "تغيير تنظیمات"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "نمايش جدولها"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "در نظر نگرفتن"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "نمايش دوباره اين پرس و جو در اينجا"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "آيا مطمئن هستيد "
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "توضيحات جدول"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "مخفی کردن نتایج جستجو"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "قبل"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2766,350 +2809,350 @@ msgid "Next"
msgstr "بعد"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "امروز"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "ژانویه"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "فوریه"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "مارس"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "آوريل"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "مي"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "ژوئن"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "جولاي"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "آگوست"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "سپتامبر"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "اكتبر"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "نوامبر"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "دسامبر"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "دسامبر"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "يكشنبه"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "دوشنبه"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "سهشنبه"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "چهارشنبه"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "پنجشنبه"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "جمعه"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "شنبه"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "شنبه"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "يكشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "دوشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "سهشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "چهارشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "پنجشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "جمعه"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "شنبه"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "هفته"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "تقویم-ماه-سال"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "هیچ"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "ساعت"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "دقیقه"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "ثانیه"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Text fields"
msgid "Please fix this field"
msgstr "فیلد های متنی"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "شماره پورت معتبر نیست"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3180,16 +3223,16 @@ msgstr "در ساعت"
msgid "per day"
msgstr "هر روز"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "فایل تنظیمات فعلی (%s) قابل خواندن نیست."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "تنظمیات دسترسی اشتباه در فایل تنظیمات ، نباید قابل نوشتن جهانی باشد!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "اندازه فونت"
@@ -3210,7 +3253,7 @@ msgid "Requery"
msgstr "کوئری داخلی"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3432,7 +3475,7 @@ msgid "Count:"
msgstr "ستون"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3642,25 +3685,25 @@ msgstr "نمایش تاریخچه"
msgid "Delete bookmark"
msgstr "حذف رابطه"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3734,6 +3777,16 @@ msgstr "كلمات با علامت فاصله (\" \") جدا ميشوند."
msgid "Inside tables:"
msgstr "درجدول های:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "انتخاب همه"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "عدم انتخاب همه"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "در ستونها:"
@@ -3793,7 +3846,7 @@ msgid "All"
msgstr "همه"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
@@ -4110,7 +4163,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "سرور"
@@ -4121,34 +4174,13 @@ msgstr "سرور"
msgid "View"
msgstr "نمایه"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "ساختار"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4245,8 +4277,8 @@ msgstr "اضافه يا حذف ستونها"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "پايگاههاي داده"
@@ -4365,7 +4397,7 @@ msgid "Recent"
msgstr "پاک سازی"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
msgid "Favorite tables"
msgstr "متغییر"
@@ -4441,16 +4473,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "جدولها"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4979,7 +5001,7 @@ msgstr "حداکثر: %s %s"
msgid "MySQL said: "
msgstr "پيغام MySQL : "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "شرح دادن SQL"
@@ -4996,7 +5018,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "بدون كد PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "ساخت كد PHP"
@@ -5117,17 +5139,6 @@ msgstr "این مقدار را استفاده کنید"
msgid "Rows"
msgstr "سطرها"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "داده"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5300,7 +5311,7 @@ msgstr "سرور"
msgid "Invalid authentication method set in configuration:"
msgstr "روش احراز هویت در تنظیمات صحیح نمی باشد:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5308,24 +5319,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "شما باید به %s %s یا جدیدتر به روز شوید."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "احتمال وجود exploit"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "کلید عددی یافت شد"
@@ -5570,7 +5581,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5989,7 +6000,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -5999,7 +6010,7 @@ msgstr "شرج"
msgid "Save as file"
msgstr "ذخيره به صورت پرونده"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "مجموعه كاراكترهاي پرونده"
@@ -6026,17 +6037,17 @@ msgstr "فشردهسازي"
msgid "Put columns names in the first row"
msgstr "قراردادن نام ستونها در اولين سطر"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "ستونهاي درميانگرفته با"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6054,16 +6065,16 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "ستون های از بین رفته به وسیله"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6135,7 +6146,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -6152,8 +6163,8 @@ msgstr "مقدار افزایشی خودکار اضافه شود"
msgid "Enclose table and column names with backquotes"
msgstr "قراردادن نام جدولها و ستونها بين علامت نقلقول"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6270,17 +6281,17 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize default options."
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "دادههاي CSV"
@@ -6312,7 +6323,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6361,173 +6372,185 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Customize text input fields"
+msgid "Navigation tree"
+msgstr "سفارشی کردن فیلدهای ورودی متن"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize text input fields"
+msgid "Customize the navigation tree."
+msgstr "سفارشی کردن فیلدهای ورودی متن"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "سرور"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Databases display options"
msgid "Servers display options."
msgstr "گزینه های نمایش پایگاه داده"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Databases display options"
msgid "Tables display options."
msgstr "گزینه های نمایش پایگاه داده"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Hide indexes"
msgid "Main panel"
msgstr "مخفی کردن فهرست ها"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "عنوان صفحه"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "ورود"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication"
msgid "Authentication settings."
msgstr "ورود"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Server connection collation"
msgid "Enter server connection parameters."
msgstr "تلفیق اتصال سرور"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize navigation panel"
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize main panel"
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "پرس و جوي SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "جعبه پرس و جوي SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "تنظیمات پرس و جوي SQL"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize startup page."
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "پايگاههاي داده"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6535,59 +6558,59 @@ msgstr ""
msgid "Table structure"
msgstr "پايگاههاي داده"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "جدول"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display relational schema"
msgstr "نمايش الگوي PDF"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "فیلد های متنی"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "هشدارها"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "غیر فعال کردن برخی از هشدارهای نشان داده شده توسط phpMyAdmin"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6599,15 +6622,15 @@ msgstr ""
"فعال کردن فشرده سازی [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] برای "
"عملیات خروجی و ورودی"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "پارامترهای اضافی برای iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6619,36 +6642,36 @@ msgstr ""
"اگر فعال باشد ,phpMyAdmin در صورتی که محاسبه ای با خطا مواجه شد به دیگر "
"محاسبات ادامه خواهد داد"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "نادیده گرفتن اشتباهات بیانی متعدد"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "ورودی جزئی : اجازه توقف دادن"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "آیا درج خطا بینتیجه بوده"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6660,90 +6683,90 @@ msgstr ""
"فرمت پیش فرض;اگاه باشید که این لیست وابسته به محل(پایگاه داده,جدول) و فقط "
"همیشه sql مورد دسترسی میباشد"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "فرمت فایل های مهم"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "استفاده از کلید واژه های محلی"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "نام ستونها در اولين سطر"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "ردیف خالی وارد کنید"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "ارز واردات ($ 5.00 به 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "درصد واردات به عنوان رقم اعشار مناسب (12.00٪ به 0.12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "شماره نمایش داده شد از شروع به جست و خیز"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6751,892 +6774,948 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hint"
msgid "Show databases navigation as tree"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Customize text input fields"
msgid "Show logo in navigation panel."
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
msgid "Enable navigation tree expansion"
msgstr "توضيحات جدول"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "نمايش جدولها"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr "جدول های استفاده شده اخیر"
+#, fuzzy
+#| msgid "Show hint"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Show grid"
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr ""
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show hint"
+msgid "Show views in tree"
+msgstr "Show grid"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr ""
+#, fuzzy
+#| msgid "Show hint"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Show grid"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Connections since last refresh"
+msgid "Show functions in tree"
+msgstr "اتصال ها در آخرین رفرش"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
-msgstr ""
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "نمايش فرايندها"
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr "نوبت خنثی"
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
#, fuzzy
+#| msgid "Show hint"
+msgid "Show events in tree"
+msgstr "Show grid"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hint"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Show grid"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr "جدول های استفاده شده اخیر"
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr "نوبت خنثی"
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+#, fuzzy
msgid "Table navigation bar"
msgstr "توضيحات جدول"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "اجازه دهید همه ردیف ها نمایش داده شوند"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "هنگام مرور جدول ها,نوع هر جدول به یاد می ماند"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "به یاد ماندن نوع جدول"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "يك كليد اصلي در %s اضافه شد"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "تکرار عنوان ها"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relations"
msgid "Relational display"
msgstr "رابطه ها"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Databases display options"
msgid "For display Options"
msgstr "گزینه های نمایش پایگاه داده"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "ذخیره سریع تمام سلول های ویرایش شده"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "ذخیره ی پوشه"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "در صورت استفاده نکردن خالی بگذارید"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank for defaults."
msgstr "در صورت استفاده نکردن خالی بگذارید"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication"
msgid "Authentication method to use."
msgstr "ورود"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "ورود به MySQL server ناموفق بود"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "کنترل هاست"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "کنترل هاست"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "مخفی کردن پایگاه داده ها"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "جدول تاریخ دستورات اس کیو ال"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "نام میزبان سرور"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "خروج URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "اضافه يا حذف ستونها"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "سعی کردن برای اتصال بدون رمز عبور"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "اتصال بدون رمز عبور"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "نام پايگاه داده"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "پورت سرور"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "جدول هایی که به تازگی استفاده شده"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
msgid "Favorites table"
msgstr "متغییر"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "ارتباط جدول"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "نمایش جدول ستون ها"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "جملاتی که باید ردگیری شوند"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "به صورت خودکار نسخه ایجاد شود"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "بكارگيري جدولها"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7644,208 +7723,208 @@ msgstr ""
"توضیحات کاربر پسند از این سرور . این فیلد را خالی بگذارید تا نام میزبان به "
"جای آن قرار بگیرد ."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "اجازه دهید همه ردیف ها نمایش داده شوند"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "توضيحات جدول"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "نمايش اطلاعات PHP"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "نمايش جدولها"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "پرس و جوي SQL"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "آمار سطرها"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "اضافه يا حذف ستونها"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "پيشفرض"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7853,52 +7932,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7906,34 +7985,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "نام كاربر"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "اسم رمز"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -7945,53 +8024,53 @@ msgstr ""
"فعال کردن فشرده سازی [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] برای "
"عملیات خروجی و ورودی"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "پورت سرور"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Failed to read configuration file"
msgid "Enable Zero Configuration mode"
@@ -8019,46 +8098,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "مستندات باز"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "آمار پايگاههاي داده"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV براي دادههاي MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -8089,7 +8168,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8162,7 +8241,7 @@ msgstr "ساختن جدول"
msgid "Number of columns"
msgstr "تعداد سطرها در هر صفحه"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8209,64 +8288,64 @@ msgstr "جدولها"
msgid "Format:"
msgstr "قالب"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "سطرها"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8274,84 +8353,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "مجموعه كاراكترهاي پرونده:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "فشردهسازي"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zipped\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzipped\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "ذخيره به صورت پرونده"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Exporting rows from \"%s\" table"
+msgid "Export databases as separate files"
+msgstr "ساخت جدول جديد در پايگاه داده %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export"
+msgid "Export tables as separate files"
+msgstr "صدور"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "ذخيره به صورت پرونده"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Select Tables"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Select Tables"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "نام پايگاه داده"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "No tables"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "نام ستونها"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -8918,7 +9009,7 @@ msgid "Create an index on %s columns"
msgstr "ساخت يك فهرست در %s ستون"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "پنهان کردن"
@@ -9062,11 +9153,6 @@ msgstr "جمعه"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "ارسال"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Replace table prefix"
@@ -9289,28 +9375,34 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "نام ستونها"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "رویدادها"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "تابع"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Processes"
msgid "Procedures:"
msgstr "پروسه ها"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "جدولها"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9340,39 +9432,39 @@ msgstr "سفارشی کردن فیلدهای ورودی متن"
msgid "Reload navigation panel"
msgstr "سفارشی کردن فیلدهای ورودی متن"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "تغيير جدول مرتب شده با"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "ذخيره به صورت پرونده"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "تغيير جدول مرتب شده با"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9412,7 +9504,7 @@ msgstr "جدید"
msgid "Database operations"
msgstr "آمار پايگاههاي داده"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -10684,26 +10776,26 @@ msgstr "نام ستونها"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11050,63 +11142,63 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "خطا : رابطه قبلا ایجاد شده است."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "رابطه کلید خارجی اضافه شد"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "خطا : رابطه اضافه نشده است ."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "خطا : رابطه اضافه نشده است ."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "ارتباط داخلی افزوده شد"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "خطا : رابطه اضافه نشده است ."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "رابطه کلید خارجی اضافه شد"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "خطا : رابطه اضافه نشده است ."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "خطا : رابطه اضافه نشده است ."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11203,54 +11295,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "به یاد ماندن نوع جدول"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "no Description"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12019,7 +12117,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17037,9 +17135,6 @@ msgstr "مقدار concurrent_insert صفر شده است"
#~ msgid "Server traffic (in KiB)"
#~ msgstr "ترافیک سرور (کیلو بایت)"
-#~ msgid "Connections since last refresh"
-#~ msgstr "اتصال ها در آخرین رفرش"
-
#~ msgid "Questions since last refresh"
#~ msgstr "سوالات در آخرین رفرش"
@@ -17250,9 +17345,6 @@ msgstr "مقدار concurrent_insert صفر شده است"
#~ msgid "Reset"
#~ msgstr "Reset"
-#~ msgid "Show processes"
-#~ msgstr "نمايش فرايندها"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reset"
diff --git a/po/fi.po b/po/fi.po
index 9cf16d5ee7..328c087df9 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-01-18 15:39+0200\n"
"Last-Translator: Juha
- Ctrl+Click tai Alt+Click (Mac: "
"Shift+Option+Click) poistaaksesi sarakkeen ORDER BY - klausuulista"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Merkitse tai poista merkintä napsauttamalla."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Kopioi kentän nimi kaksoisnapsauttamalla."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Muuta sarakkeen näkyvyyttä
napsauttamalla pudotusvalikon nuolta."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Näytä kaikki"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2350,13 +2393,13 @@ msgstr ""
"valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät "
"ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Ole hyvä ja anna pätevä heksadesimaalinen merkkijono. Pätevät merkit ovat "
"0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2364,142 +2407,142 @@ msgstr ""
"Oletko varma että haluat nähdä kaikki rivit? Suuret taulut voivat kaataa "
"selaimesi."
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "Alkuperäinen merkkijono"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "peruuta"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Keskeytetty"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Onnistui"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Tuo tila"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Vedä tiedostot tähän"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Valitse ensin tietokanta"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Useimpia sarakkeita voi myös muokata
\n"
"painamalla suoraan niiden sisältöä."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Useimpia sarakkeita voi myös muokata
painamalla suoraan niiden sisältöä."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Siirry linkkiin:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Kopioi kentän nimi."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Napsauta hiiren kakkospainikeella sarakkeen nimeä kopioidaksesi sen "
"leikepöydälle."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Keksi salasana"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Keksi"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Vaihda salasana"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Lisää"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Näytä paneeli"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Piilota paneeli"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Näytä piilotetut navigointipuun kohteet."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Linkitä pääpaneelin kanssa"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Poista pääpaneelin linkki"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Taulut"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "Näkymät"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Proseduurit"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "Tapahtuma"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Funktiot"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "Pyydettyä sivua ei löytynyt historiasta, se voi olla vanhentunut."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2509,49 +2552,49 @@ msgstr ""
"Uusin versio on %s, ja se on julkaistu %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", viimeisin vakaa versio:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "ajan tasalla"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Luo näkymä"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Lähetä virheraportti"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Lähetä virheraportti"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr "Tapahtui vakava JavaScript-virhe. Haluatko lähettää virheraportin?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Muuta raportin asetuksia"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Näytä raportin tarkat tiedot"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
"Vientisi on vaillinainen, koska PHP-tasolla on alhainen suoritusaikaraja!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2561,64 +2604,64 @@ msgstr ""
"lomake jotkut kentät voidaan jättää huomiotta, PHP:n max_input_vars "
"konfiguraation vuoksi."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Palvelimella on havaittu joitakin virheitä!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Ole hyvä ja katso tämän ikkunan alalaitaan."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Sivuuta kaikki"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Asetuksiesi mukaisesti niitä ollaan lähettämässä para-aikaa, ole hyvä ja ole "
"kärsivällinen."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Suoritetaanko tämä kysely uudelleen?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Haluatko varmasti poistaa tämän kirjanmerkin?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL-kyselyt"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Taulun kommentit"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Piilota hakutulokset"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2629,361 +2672,361 @@ msgstr ""
"Safari-verkkoselainta, tämä ongelma on yleensä yksityisen selauksen "
"aiheuttama."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Edellinen kuukausi"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Seuraava kuukausi"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Tänään"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Tammikuu"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Helmikuu"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Maaliskuu"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Huhtikuu"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Toukokuu"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Kesäkuu"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Heinäkuu"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Elokuu"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Syyskuu"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Lokakuu"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Marraskuu"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Joulukuu"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Joulu"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Sunnuntai"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Maanantai"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Tiistai"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Keskiviikko"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Torstai"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Perjantai"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Lauantai"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "La"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "La"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Vko"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "kalenteri-kuukausi-vuosi"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Tunti"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minuutti"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekunti"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Käytä tekstikenttää"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid email address"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "Annathan kelvollisen porttinumeron!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date ( ISO )"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "Annathan kelvollisen porttinumeron!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "Annathan kelvollisen porttinumeron!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "Annathan kelvollisen pituuden!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter the same value again"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter at least {0} characters"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value between {0} and {1}"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Annathan kelvollisen pituuden!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date or time"
msgstr "Annathan kelvollisen sivun nimen"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Annathan kelvollisen porttinumeron!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3058,18 +3101,18 @@ msgstr "tunnissa"
msgid "per day"
msgstr "päivässä"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Olemassa oleva asetustiedosto (%s) ei ole luettavissa."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Väärät pääsyasetukset asetustiedostolla, sen ei kuuluisi olla kaikkien "
"kirjoitettavissa!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Fonttikoko"
@@ -3088,7 +3131,7 @@ msgid "Requery"
msgstr "Suorita hakulause uudelleen"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3288,7 +3331,7 @@ msgid "Count:"
msgstr "Laske"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3463,7 +3506,7 @@ msgstr "Päivitä kirjanmerkki"
msgid "Delete bookmark"
msgstr "Poista kirjanmerkki"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3471,19 +3514,19 @@ msgstr ""
"Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty "
"oikein)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Palvelin ei vastaa."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Tarkista käyttöoikeudet hakemisto sisältää tietokannan."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Lisätiedot…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
@@ -3558,6 +3601,16 @@ msgstr "Sanat erotetaan välilyönnein."
msgid "Inside tables:"
msgstr "Tauluissa:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Valitse kaikki"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Poista valinta kaikista"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Sarakkeen sisällä:"
@@ -3611,7 +3664,7 @@ msgid "All"
msgstr "Kaikki"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Rivien määrä:"
@@ -3912,7 +3965,7 @@ msgstr ""
"poistaa."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Palvelin"
@@ -3923,34 +3976,13 @@ msgstr "Palvelin"
msgid "View"
msgstr "Näkymä"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Rakenne"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4045,8 +4077,8 @@ msgstr "Keskisarakkeet"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Tietokannat"
@@ -4149,7 +4181,7 @@ msgid "Recent"
msgstr "Äskettäinen"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Suosikkitaulut"
@@ -4218,16 +4250,6 @@ msgstr "Liitokset"
msgid "Sorting"
msgstr "Lajittelu"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Taulut"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Transaktion koordinaattori"
@@ -4795,7 +4817,7 @@ msgstr "Enimmäiskoko: %s%s"
msgid "MySQL said: "
msgstr "MySQL ilmoittaa: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Selitä SQL-kysely"
@@ -4812,7 +4834,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Ilman PHP-koodia"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Luo PHP-koodi"
@@ -4927,17 +4949,6 @@ msgstr "Käytä tätä arvoa"
msgid "Rows"
msgstr "Kpl rivejä"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Tietoa"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5098,7 +5109,7 @@ msgstr "Palvelin %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Asetuksissa on virheellinen todennustapa:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5106,24 +5117,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Virhe: Tunnus ei täsmää"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS ylikirjoitus yritys"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "mahdollinen turva-aukko"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "numeerinen avain tunnistettu"
@@ -5353,7 +5364,7 @@ msgid "Set value: %s"
msgstr "Aseta arvo: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Palauta oletusarvo"
@@ -5910,7 +5921,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Suorituksen enimmäiskesto"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -5920,7 +5931,7 @@ msgstr "Lisää %s lauseke"
msgid "Save as file"
msgstr "Tallenna tiedostoon"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Tiedoston merkistö"
@@ -5947,15 +5958,15 @@ msgstr "Pakkaus"
msgid "Put columns names in the first row"
msgstr "Aseta sarakkeiden nimet ensimmäiselle riville"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Sarakkeet mukana"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Sarakkeet unohtui"
@@ -5971,14 +5982,14 @@ msgstr "Korvaa NULL merkki"
msgid "Remove CRLF characters within columns"
msgstr "Poista CRLF-merkit sarakkeista"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Sarakkeet päätetään"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Rivit päätetään"
@@ -6048,7 +6059,7 @@ msgid "Save on server"
msgstr "Tallenna palvelimelle"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)"
@@ -6065,8 +6076,8 @@ msgstr "Lisää AUTO_INCREMENT-arvo"
msgid "Enclose table and column names with backquotes"
msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL-yhteensopiva tila"
@@ -6200,17 +6211,17 @@ msgid "Customize browse mode."
msgstr "Mukauta selaustilaa"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "Mukauta oletusvalintoja"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6244,7 +6255,7 @@ msgstr "Vie oletusarvot"
msgid "Customize default export options."
msgstr "Mukauta viennin oletusasetuksia"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Ominaisuudet"
@@ -6299,46 +6310,58 @@ msgstr "Navigointi paneeli"
msgid "Customize appearance of the navigation panel."
msgstr "Mukauta navigointipalkin näkymää"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigointi paneeli"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Mukauta navigointi paneelia"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Palvelimet"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "Palvelinten näyttöasetukset"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "Taulujen näyttöasetukset"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Pääpaneeli"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Muut ydinasetukset"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "Asetukset, jotka eivät sovi muualle"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Sivun otsikot"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6352,11 +6375,11 @@ msgstr ""
"[doc@cfg_TitleTable]documentation[/doc] magic strings, jonka avulla voidaan "
"saada erityisiä arvoja."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Turvallisuus"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6368,25 +6391,25 @@ msgstr ""
"Huomaa, että phpMyAdmin on vain käyttöliittymä, ja sen ominaisuuksia ei ole "
"rajoitettu MySQL-tietokantaan"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Perusasetukset"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Todennus"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "Todennuksen valinnat"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Palvelimen määrittely"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6398,17 +6421,17 @@ msgstr ""
"Palvelimen lisäasetus; älä muuta näitä valintoja, ellet tiedä, mihin niitä "
"käytetään."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "Anna palvelimen yhteysparametrit"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Asetusmuisti"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
@@ -6422,68 +6445,68 @@ msgstr ""
"Määritä phpMyAdmin määritysten tallennus käyttääksesi lisäasetuksia, katso "
"ohjeista [doc@linked-tables]phpMyAdmin määritysten tallennus[/doc]"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Muutosten seuranta"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Mukauta viennin oletusasetuksia"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Mukauta tuonnin oletusasetuksia"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Mukauta navigointi paneelia"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Mukauta pääpaneelia"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL-kyselyt"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL-kyselykenttä"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "Mukauta SQL-kyselykentässä näytettäviä linkkejä"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "SQL-kyselyjen asetukset"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Käynnistys"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "Mukauta käynnistyssivua"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Tietokannan rakenne"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
#, fuzzy
#| msgid ""
#| "Choose which details to show in the database structure (list of tables)"
@@ -6493,69 +6516,69 @@ msgstr ""
"Valitse, mitkä tiedot näytetään tietokannan rakenteessa (taulukoiden "
"luettelo)"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Taulun rakenne"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
#, fuzzy
#| msgid "Settings for the table structure (list of columns)"
msgid "Settings for the table structure (list of columns)."
msgstr "Taulukkorakenteen asetukset (sarakkeiden luettelo)"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Välilehdet"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "Valitse haluamasi välilehtien toiminta"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Relaatioskeema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Paperin koko"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Tekstikentät"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "Muokkaa tekstikenttiä"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy!-teksti"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Mukauta oletusvalintoja"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Varoitukset"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Kytke osa phpMyAdminin näyttämistä varoituksista pois päältä"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6567,15 +6590,15 @@ msgstr ""
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a]-pakkausta"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Iconv-laajennuksen lisäparametrit"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6587,11 +6610,11 @@ msgstr ""
"Jos käytössä, phpMyAdmin jatkaa monilausekyselyjen laskemista, vaikka yksi "
"kyselyistä epäonnistui"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Älä välitä peräkkäisistä lausevirheistä"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6601,25 +6624,25 @@ msgstr ""
"Tätä kannattaa käyttää tuotaessa suuria tiedostoja; se saattaa kuitenkin "
"katkaista transaktiot."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Osittainen tuonti: salli keskeytys"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Älä keskeytä INSERT-virheen tapauksessa"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6631,62 +6654,62 @@ msgstr ""
"Oletusmuoto; huomaa, että tämä luettelo riippu sijainnista (tietokanta, "
"taulu), ja käytettävissä on vain SQL"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Tuotavan tiedoston muoto"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Käytä LOCAL-avainsanaa"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Sarakenimet ensimmäisessä rivissä"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Älä tuo tyhjiä riviä"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Tuo prosenttiyksiköt sopivin desimaaliluvuin (12.00% muotoon .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "Alusta ohitettavien kyselyjen määrä"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Osittainen tuonti: ohita kyselyjä"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "Kuinka monta riviä voi lisätä kerrallaan"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Lisättyjen rivien määrä"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
#, fuzzy
#| msgid ""
#| "Maximum number of characters shown in any non-numeric column on browse "
@@ -6697,11 +6720,11 @@ msgstr ""
"Selainnäkymässä näytettävien merkkien määrä missä tahansa ei numeerisessa "
"sarakkeessa"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Merkkien raja sarakkeessa"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6712,11 +6735,11 @@ msgstr ""
"asetetaan FALSE:ksi, saattaa helposti unohtaa kirjata muut palvelimet ulos, "
"mikäli yhteyksiä on muodostettu useisiin palvelimiin."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Poista kaikki evästeet uloskirjauduttaessa"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6727,11 +6750,11 @@ msgid ""
msgstr ""
"Määritä, onko evästetodennustilassa muistettava edellinen kirjautuminen"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Anna käyttäjänimi"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6743,56 +6766,56 @@ msgstr ""
"ajan ja poistetaan, kun selainikkuna suljetaan. Tätä suositellaan "
"epäluotetuille ympäristöille."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Kirjautumisevästeen tallennus"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Määrittele sekunteina, kuinka pitkään kirjautumiseväste on kelvollinen"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Kirjautumisevästeen kelpoisuus"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Kaksinkertainen tekstialue LONGTEXT sarakkeille"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Isompi tekstialue LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Näytettävän SQL-kyselyn enimmäispituus"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Näytettävän SQL-kyselyn enimmäispituus"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Käyttäjät eivät voi määrittää suurempaa arvoa"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of databases displayed in database list"
msgid "Maximum number of databases displayed in database list."
msgstr "Tietokantaluettelossa näkyvien tietokantojen enimmäismäärä"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Tietokantoja enintään"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid ""
#| "The number of items that can be displayed on each page of the navigation "
@@ -6802,13 +6825,13 @@ msgid ""
"the navigation tree."
msgstr "Nimikkeiden määrä jotka voidaan näyttää navigointipuun eri sivuilla"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum items in branch"
msgid "Maximum items on first level"
msgstr "Kohteiden enimmäismäärä haarassa"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
#, fuzzy
#| msgid ""
#| "The number of items that can be displayed on each page of the navigation "
@@ -6818,11 +6841,11 @@ msgid ""
"tree."
msgstr "Nimikkeiden määrä jotka voidaan näyttää navigointipuun eri sivuilla"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Kohteiden enimmäismäärä haarassa"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6830,21 +6853,21 @@ msgstr ""
"Näytettävien rivien määrä selattaessa tulostaulua. Jos tulostaulussa on "
"enemmän rivejä, näytetään \"Edellinen\"- ja \"Seuraava\"-linkit."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Näytettävien rivien enimmäismäärä"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table list."
msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Tauluja enintään"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
@@ -6856,45 +6879,45 @@ msgstr ""
"Skriptin varaama enimmäistavumäärä, esim. [kbd]32M[/kbd] ([kbd]0[/kbd] = ei "
"rajoitusta)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Muistirajoitus"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Näytä piilotetut navigointipuun kohteet."
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show logo in navigation panel."
msgstr "Näytä navigointi paneelissa logo"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Näytä logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation panel will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "URL-osoite, johon logo navigointi paneelissa osoittaa"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Logon linkin osoite"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
#, fuzzy
#| msgid ""
#| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
@@ -6906,31 +6929,31 @@ msgstr ""
"Avaa linkitetty sivu pääikkunassa: ([kbd]main[/kbd]) tai uudessa ikkunassa: "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Logon linkin kohde"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the navigation panel"
msgid "Display server choice at the top of the navigation panel."
msgstr "Näytä palvelimen valinta navigointi paneelin yläreunassa"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Näytä palvelinten valinta"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Pikakäyttökuvakkeen kohde"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Pikakäyttökuvakkeen kohde"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6938,15 +6961,15 @@ msgstr ""
"Määrittää kohteiden (taulukot, näkymät, rutiinit ja tapahtumat) suodattimen "
"vähimmäismäärän."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Suodatimessa näytettävien kohteiden vähimmäismäärä"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Taululuettelossa näkyvien taulujen minimimäärä"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6958,119 +6981,175 @@ msgstr ""
"Näytä tietokannat navigointipuuna (puu määritellään alla osoitetulla "
"erottimella)"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Navigointipuun ryhmittäminen"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
msgstr "Merkkijono, joka jakaa tietokannat eri puutasoille"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Tietokantapuun erotin"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
msgstr "Merkkijono, joka jakaa taulut eri puutasoille"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Taulupuun erotin"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Taulupuun enimmäissyvyys"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "Korosta kohdistimen alla oleva palvelin"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Käytä korostusta"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "Taulukon navigointipalkki"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Näytä taulut"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Näytä piilotetut navigointipuun kohteet."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Näytä versiot"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Näytä piilotetut navigointipuun kohteet."
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Näytä funktiokentät"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Näytä prosessit"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Näytä versiot"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Näytä piilotetut navigointipuun kohteet."
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "Viimeksi käytettyjen taululuettelo, 0 poistaa käytöstä"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Viimeksi käytettyjen taululuettelo, 0 poistaa käytöstä"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Viimeksi käytetty taulut"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
#, fuzzy
#| msgid "These are Edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links."
msgstr "Nämä ovat Muokkaa, kopioi ja Poista linkit"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Tässä näytetään taulukon rivien linkit"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Luonnollinenjärjestys"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Käytä vain kuvakkeita, vain tekstiä tai molempia"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Taulukon navigointipalkki"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "käytä Gzip-ulostulon puskurointia nopeuttaaksesi HTTP-siirtoja"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip-ulostulon puskurointi"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7082,32 +7161,32 @@ msgstr ""
"[kbd]SMART[/kbd] - eli laskeva järjestys kentille, joiden tyyppi on TIME, "
"DATE, DATETIME ja TIMESTAMP, muulloin nouseva järjestys"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Oletuslajittelujärjestys"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Käytä MySQL-tietokantojen jatkuvia yhteyksiä"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Jatkuvat yhteydet"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7119,11 +7198,11 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7135,29 +7214,29 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Miten menun välilehdet näytetään"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Poista BLOB ja BINARY kentät muokkauksesta"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Suojaa binäärisarakkeet"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7167,136 +7246,136 @@ msgstr ""
"määritykset). Jos poistettu käytöstä, tämä käyttää JavaScript-rutiineja "
"kyselyhistorian näyttämisessä (katoaa, kun ikkuna suljetaan)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Pysyvä kyselyhistoria"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Kuinka monta kyselyä historiassa pidetään"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Kyselyhistorian pituus"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
msgstr "Valitse, mitä funktioita käytetään merkistömuunnoksessa"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Merkistön uudelleenkoodaus"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Muista taulun järjestys"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Oletuslajittelujärjestys"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Toista otsikoita"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relatiivinen näyttösarake"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Palvelinten näyttöasetukset"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Hakemisto, jonne viennit voi tallentaa palvelimella"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Tallennushakemisto"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Jätä tyhjäksi, jos tätä ei käytetä"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Palvelintodennuksen järjestys"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Käytä oletusarvoja jättämällä tyhjäksi"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Palvelintodennuksen säännöt"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Salli kirjautumiset ilman salasanaa"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Salli pääkäyttäjän kirjautuminen"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Tämän istunnon arvo"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7310,21 +7389,21 @@ msgstr ""
"[a@http://swekey.com]SweKey-laitteistotodennuksen[/a] asetustiedoston polku "
"(ei dokumenttijuuressa; suositeltu: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey-asetustiedosto"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Käytettävä todennustyyppi"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Todennustyyppi"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7332,11 +7411,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]kirjanmerkki[/a]tukea, oletusarvo: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Kirjanmerkkitaulu"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7348,36 +7427,36 @@ msgstr ""
"Jätä tyhjäksi, jos et halua sarakkeiden kommentteja ja mime-tyyppejä, "
"oletusarvo: [kbd]pma_column__info[/kbd]"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Saraketietojen taulu"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Pakkaa MySQL-palvelimen yhteys"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Pakkaa yhteys"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
#, fuzzy
#| msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Kuinka palvelimeen yhdistetään; käytä [kbd]tcp[/kbd]:tä, jos olet epävarma"
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Yhteystyyppi"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Hallintakäyttäjän salasana"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7391,38 +7470,38 @@ msgstr ""
"lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wikissä[/a]"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Hallintakäyttäjä"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Hallintapalvelin"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Hallinta portti"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Piilota tietokannat, jotka vastaavat säännöllistä lauseketta (PCRE)"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7431,15 +7510,15 @@ msgstr ""
"virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n "
"ohjelmavirheistä[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Poista INFORMATION_SCHEMA käytöstä"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Piilota tietokannat"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7451,41 +7530,41 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: "
"[kbd]pma__history[/kbd]"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL-kyselyhistorian taulu"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "MySQL-palvelimen verkkonimi"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Palvelimen verkkonimi"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Uloskirjautumisen verkko-osoite"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Tallennettavien taulumääritysten maksimi määrä"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Näytä alipalvelimen tilan taulu"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7497,13 +7576,13 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "Keskisarakkeet"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7515,17 +7594,17 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Yritä yhdistää ilman salasanaa"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Yhdistä ilman salasanaa"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7535,21 +7614,21 @@ msgstr ""
"koodinvaihtomerkin, mikäli haluat käyttää niiden todellista ilmentymää, "
"käytä esimerkiksi [kbd]'my\\_db'[/kbd] mutta ei [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Näytä vain luetteloidut tietokannat"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "Jätä tyhjäksi, jot et käytä config-todennusta"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Config-todennuksen salasana"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7560,11 +7639,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF-kaavio: sivujen taulu"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7579,23 +7658,23 @@ msgstr ""
"Katso täydet tiedot aiheesta [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/"
"a]. Jätä tyhjäksi, jos et halua tukea. Oletusarvo: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "tietokannan nimi"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Portti, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä tyhjäksi"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Palvelinportti"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7607,11 +7686,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: "
"[kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Viimeisimmäksi käytetty taulu"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7623,13 +7702,13 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea, oletusarvo: "
"[kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Suosikkitaulut"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7641,11 +7720,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/"
"relation]relaatiolinkki[/a]tukea, oletusarvo: [kbd]pma__relation[/kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Relaatiotaulu"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7657,15 +7736,15 @@ msgstr ""
"Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/"
"a] esimerkit"
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Signon-istunnon nimi"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Signon-kirjautumisen verkko-osoite"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
@@ -7673,21 +7752,21 @@ msgstr ""
"Palvelinpistoke, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä "
"tyhjäksi"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Palvelinpistoke"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Yhdistä MySQL-palvelimeen käyttäen SSL-yhteyttä"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Käytä SSL-yhteyttä"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7699,13 +7778,13 @@ msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF-kaavio: taulun koordinaatit"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7717,11 +7796,11 @@ msgstr ""
"Taulukko kuvaamaan näytettäviä sarakkeita, jätä tyhjäksi jos et halua tukea; "
"oletusarvo: [kbd]pma__table_info[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Näyttökenttien taulu"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
@@ -7733,49 +7812,49 @@ msgstr ""
"Jätä tyhjäksi, ei \"pysyviä\" taulukoita käyttöliittymäasetuksiin eri "
"istuntoihin, oletusarvo: [kbd]pma__table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Käyttöliittymän ominaisuuksien taulu"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Jäljitettävä lauseke"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7787,21 +7866,21 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kysely seuranta tukea, oletusarvo: "
"[kbd]pma__history[/kbd]"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL-kyselyhistorian taulu"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Automaattisesti luodut versiot"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7813,33 +7892,33 @@ msgstr ""
"Jätä tyhjäksi,jos ei käyttäjän asetuksia varastoida tietokantaan, "
"oletusarvo: [kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Käyttäjätaulukko"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Käyttäjäryhmät taulukko"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Leave blank to disable the feature to hide and show navigation items, "
@@ -7851,15 +7930,15 @@ msgstr ""
"Jätä tyhjäksi jos haluat poistaa käytöstä, piilota ja näytä navigointi "
"kohteet, oletusarvo: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Config-todennuksen käyttäjä"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7867,21 +7946,21 @@ msgstr ""
"Käyttäjäystävällinen kuvaus tästä palvelimesta. Jätä tyhjäksi, jos haluat, "
"että tässä lukee sen sijaan palvelimen verkkonimi."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Tämän palvelimen yksityiskohtainen nimi"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Näyttääkö käyttäjälle \"Näytä kaikki (rivit)\"-painike"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Salli kaikkien rivien näyttäminen"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7897,81 +7976,81 @@ msgstr ""
"todennusta käytettäessä, koska salasana lukee suoraan asetustiedostossa; "
"tämä ei estä saman komennon suorittamista suoraan."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Näytä salasananvaihtolomake"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Näytä tietokannanluontilomake"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Taulun kommentit"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Näytä luonnin aikaleima"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Näytä viimeisin tarkastus aikaleima"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Näytä kenttätyypit"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Näytä funktiokentät muokkaus- ja liäsystilassa"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Näytä funktiokentät"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "Where to show the table row links"
msgid "Whether to show hint or not."
msgstr "Tässä näytetään taulukon rivien linkit"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Näytä vihje"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7983,15 +8062,15 @@ msgstr ""
"Näyät linkki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]-"
"käskyn tulosteeseen"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Näytä phpinfo()-linkki"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Näytä MySQL-palvelimen tarkat tiedot"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7999,30 +8078,30 @@ msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Määrittele, pitääkö phpMyAdminin luomat SQL-kyselyt näyttää"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Näytä SQL-kyselyt"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Säilytä SQL-kyselylaatikko"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "Salli tietokannan ja taulun tilastojen (eli tilankäytön) näyttäminen"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Näytä tilastot"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8032,11 +8111,11 @@ msgstr ""
"Merkitse käytetyt taulut ja mahdollista lukittuja tauluja sisältävien "
"tietokantojen näyttäminen"
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Ohita lukitut taulut"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -8048,11 +8127,11 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -8065,53 +8144,53 @@ msgstr ""
"Poistaa oletus varoituksen, joka näytetään jos mcrypt puuttuu eväste "
"todennuksesta"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Kirjautumisevästeen kelpoisuus"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Tekstikenttä kentät"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Tekstikenttä rivit"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Oletusotsikko"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8129,58 +8208,58 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) -otsakkeeseen, joka tulee "
"välipalvelimelta 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
"Luotettujen välipalvelimien luettelo IP-osoitteden sallimista ja estämistä "
"varten"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr "Palvelimen hakemisto, jonne tuotavia tiedostoja voi lähettää"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Lähetyshakemisto"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "Antaa hakea koko tietokannasta"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Käytä tietokantahakua"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Tarkista uusin versio"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Version tarkistus"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8188,34 +8267,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Käyttäjänimi"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Salasana"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8227,54 +8306,54 @@ msgstr ""
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a]-pakkausta"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Palvelinportti"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL-kyselyt"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8303,44 +8382,44 @@ msgstr "HTTP tunnistautuminen"
msgid "Signon authentication"
msgstr "Sisäänkirjatumistunnitautuminen"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV käyttäen LOAD DATA -kyselyä"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument laskentataulukko"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Muokattu"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Tietokannan tulostusvalinnat"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "MS Excelin CSV-muoto"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "OpenDocument teksti"
@@ -8369,7 +8448,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8436,7 +8515,7 @@ msgstr "Luo taulu"
msgid "Number of columns"
msgstr "Kenttien määrä"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!"
@@ -8479,62 +8558,62 @@ msgstr "Taulu(t):"
msgid "Format:"
msgstr "Muoto:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Muotoiluvaihtoehdot:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Merkistön uudelleenkoodaus:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Rivit:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Vedosta rivi/rivejä"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Vedosta kaikki rivit"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Tallenna palvelimelle hakemistoon %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Tiedostonimen pohja:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8545,74 +8624,86 @@ msgstr ""
"ajanmuodostostusmerkkijonoja. Lisäksi tapahtuu seuraavat muutokset: %3$s. "
"Muu teksti pysyy alkuperäisenä. Katso lisätietoja %4$sFAQ%5$s."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Tiedoston merkistö:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Pakkaus:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "ZIP-pakattu"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "GZIP-pakattu"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Näytä tulos tekstinä"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Vie näkymiä tauluina"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Vie taulun otsikot"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Tallenna tulos tiedostoon"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Valitse taulut"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Valitse taulut"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "tietokannan nimi"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New page name: "
msgid "New table name"
msgstr "Uuden sivun nimi: "
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "Kopioi kenttän nimi"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9235,7 +9326,7 @@ msgid "Create an index on %s columns"
msgstr "Luo %s sarakkeen indeksi"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Kätke"
@@ -9383,11 +9474,6 @@ msgstr "Pe"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Lähetä"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Apply index(s)"
@@ -9609,29 +9695,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Sarakkeiden nimet"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Tapahtumat"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Funktiot"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Proseduurit"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Taulut"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "Views"
msgid "Views:"
@@ -9661,39 +9753,39 @@ msgstr "Navigointi paneeli"
msgid "Reload navigation panel"
msgstr "Lataa navigointikehys uudelleen"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Lajittele taulu"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Tallenna tiedostoon"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Lajittele taulu"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9729,7 +9821,7 @@ msgstr ""
msgid "Database operations"
msgstr "Tietokannan tulostusvalinnat"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -10980,26 +11072,26 @@ msgstr "Sarakkeiden nimet"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Virheellinen CSV-tuonnin parametri: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Virheellinen muoto CSV-syötteessä rivillä %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@@ -11442,61 +11534,61 @@ msgstr "Käyttää SQL-kyselyssä syntaksinväritystä."
msgid "Formats text as XML with syntax highlighting."
msgstr "Käyttää SQL-kyselyssä syntaksinväritystä."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Virhe: relaatio on jo olemassa."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY -relaatio lisätty"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Virhe: Relaatiota ei luotu."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Virhe: Relaatio ominaisuudet ovat poissa käytöstä!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Sisäinen relaatio luotu"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Virhe: Relaatiota ei luotu."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "FOREIGN KEY -relaatio lisätty"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Virhe: Relaatiota ei luotu."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Virhe: Relaatiota ei luotu."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11600,41 +11692,47 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Muista taulun järjestys"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "ei kuvausta"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid ""
#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage"
@@ -11645,13 +11743,13 @@ msgstr ""
"Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä phpMyAdmin configuration "
"storage-kantaa"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid ""
#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage"
@@ -12530,7 +12628,7 @@ msgstr "Lähetettäviä tiedostoja ei ole"
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current server"
msgid "Current Server:"
@@ -17559,9 +17657,6 @@ msgstr "concurrent_insert on asetettu arvoon 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Poista tämän taulun seurantatiedot"
-#~ msgid "Show versions"
-#~ msgstr "Näytä versiot"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18721,9 +18816,6 @@ msgstr "concurrent_insert on asetettu arvoon 0"
#~ msgid "Reset"
#~ msgstr "Nollaa"
-#~ msgid "Show processes"
-#~ msgstr "Näytä prosessit"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Nollaa"
diff --git a/po/fr.po b/po/fr.po
index e542ef6011..bd3d196227 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-23 13:29+0200\n"
"Last-Translator: Marc Delisle
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2326,26 +2369,26 @@ msgstr ""
"ASC/DESC.
- Ctrl + clic ou Alt + clic (sur Mac : Maj + Option + Clic) "
"pour enlever la colonne de la clause ORDER BY"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Cliquer pour marquer/enlever les marques."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Double-cliquez pour copier le nom de la colonne."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Tout afficher"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2354,13 +2397,13 @@ msgstr ""
"cases à cocher ainsi que les liens Edition, Copie et Supprimer pourrait ne "
"plus fonctionner après prise en compte de la modification."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Veuillez saisir une chaîne en hexadécimal valide. Les caractères possibles "
"sont 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2368,136 +2411,136 @@ msgstr ""
"Voulez-vous vraiment voir toutes les lignes ? Pour une grande table, cela "
"pourrait faire planter le navigateur."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Longueur originale"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "annuler"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Arrêts prématurés"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Succès"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "État de l'importation"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Déposez des fichiers ici"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Choisissez d'abord une base de données"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Vous pouvez aussi modifier la plupart des valeurs
en double-cliquant "
"directement sur celles-ci."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Vous pouvez aussi modifier la plupart des valeurs
en cliquant "
"directement sur celles-ci."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Suivre le lien :"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Copier le nom de la colonne."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Faites un clic-droit sur le nom de la colonne pour le copier vers le presse-"
"papier."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Générer un mot de passe"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Générer"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Modifier le mot de passe"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "plus"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Montrer le panneau"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Cacher le panneau"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Montrer les éléments de navigation cachés."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Relier au panneau principal"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Supprimer la liaison au panneau principal"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Pour filtrer toutes les bases de données sur le serveur, appuyez sur Entrée "
"après un terme de recherche"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Pour filtrer tous les %s dans la base de données, appuyez sur Entrée après "
"un terme de recherche"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "tables"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "vues"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "procédures"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "événements"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "fonctions"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"La page demandée n'existe pas dans l'historique, elle peut avoir expiré."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2507,28 +2550,28 @@ msgstr ""
"une mise à niveau. La version la plus récente est %s, publiée le %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", dernière version stable : "
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "à jour"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Créer une vue"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Envoyer le rapport d'erreurs"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Soumettre un rapport d'erreurs"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2536,15 +2579,15 @@ msgstr ""
"Une erreur JavaScript fatale s'est produite. Désirez-vous envoyer un rapport "
"d'erreur ?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Changer les paramètres du rapport"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Montrer les détails du rapport"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2552,7 +2595,7 @@ msgstr ""
"Votre exportation est incomplète en raison d'une limite de temps d'exécution "
"trop basse au niveau PHP !"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2562,61 +2605,61 @@ msgstr ""
"l'envoi, certains des champs pourraient être ignorés, en raison de la "
"configuration max_input_vars de PHP."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Des erreurs ont été détectées sur le serveur !"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Veuillez regarder au bas de cette fenêtre."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignorer tout"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Selon vos paramètres, ils sont actuellement soumis, veuillez patienter."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Exécuter cette requête à nouveau ?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Voulez-vous vraiment supprimer ce signet ?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
"Une erreur s'est produite lors de l'obtention des informations de débogage "
"SQL."
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "%s requêtes exécutées %s fois en %s secondes."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr "%s arguments passés"
-#: js/messages.php:594
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Montrer les arguments"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Cacher les arguments"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr "Temps nécessaire :"
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2627,331 +2670,331 @@ msgstr ""
"fonctionner correctement pour vous. Dans Safari, ce problème est souvent "
"causée par le « Mode de navigation privée »."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Précédent"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Suivant"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Aujourd'hui"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Janvier"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Février"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Mars"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Avril"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mai"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Juin"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Juillet"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Août"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Septembre"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Octobre"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Novembre"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Décembre"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Dimanche"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Lundi"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Mardi"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Mercredi"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Jeudi"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Vendredi"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Samedi"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sam"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Je"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Sem"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Heure"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Seconde"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Ce champ est obligatoire"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Corrigez ce champ"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Veuillez saisir une adresse courriel valide"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Veuillez saisir une URL valide"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Veuillez saisir une date valide"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Veuillez saisir une date valide (ISO)"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Veuillez saisir un nombre valide"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Veuillez saisir un numéro de carte de crédit valide"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Veuillez saisir uniquement des chiffres"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Veuillez saisir la même valeur à nouveau"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Veuillez saisir au maximum {0} caractères"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Veuillez saisir au moins {0} caractères"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Veuillez saisir une valeur d'une longueur entre {0} et {1} caractères"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Veuillez saisir une valeur entre {0} et {1}"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Veuillez saisir une valeur inférieure ou égale à {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Veuillez saisir une valeur supérieure ou égale à {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Veuillez saisir une date ou une heure valide"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Veuillez saisir une valeur hexadécimale valide"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3026,18 +3069,18 @@ msgstr "par heure"
msgid "per day"
msgstr "par jour"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Le fichier de configuration (%s) est illisible."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Permissions sur le fichier de configuration incorrectes, il ne doit pas être "
"en écriture pour tout le monde !"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Taille du texte"
@@ -3056,7 +3099,7 @@ msgid "Requery"
msgstr "Exécuter la requête à nouveau"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3234,7 +3277,7 @@ msgid "Count:"
msgstr "Nombre :"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3407,7 +3450,7 @@ msgstr "Mettre à jour le signet"
msgid "Delete bookmark"
msgstr "Effacer le signet"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3415,20 +3458,20 @@ msgstr ""
"Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL "
"local n'est pas correctement configurée)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Le serveur ne répond pas."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
"Veuillez vérifier les privilèges du répertoire contenant la base de données."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Détails…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"La connexion au controluser tel que défini dans votre configuration a échoué."
@@ -3503,6 +3546,16 @@ msgstr "Séparer les mots par un espace (« »)."
msgid "Inside tables:"
msgstr "Dans les tables : "
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Tout sélectionner"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Tout désélectionner"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Dans la colonne : "
@@ -3556,7 +3609,7 @@ msgid "All"
msgstr "Tout"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Nombre de lignes : "
@@ -3859,7 +3912,7 @@ msgstr ""
"supprimé."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Serveur"
@@ -3870,34 +3923,13 @@ msgstr "Serveur"
msgid "View"
msgstr "Vue"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Structure"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3992,8 +4024,8 @@ msgstr "Colonnes centrales"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Bases de données"
@@ -4096,7 +4128,7 @@ msgid "Recent"
msgstr "Récentes"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Tables préférées"
@@ -4165,16 +4197,6 @@ msgstr "Jointures"
msgid "Sorting"
msgstr "Mécanisme de tri"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tables"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Coordonnateur des transactions"
@@ -4754,7 +4776,7 @@ msgstr "Taille maximum: %s%s"
msgid "MySQL said: "
msgstr "MySQL a répondu: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Expliquer SQL"
@@ -4771,7 +4793,7 @@ msgstr "Analyser les explications au %s"
msgid "Without PHP Code"
msgstr "Sans source PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Créer source PHP"
@@ -4885,17 +4907,6 @@ msgstr "Utiliser cette valeur"
msgid "Rows"
msgstr "Lignes"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Données"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5063,7 +5074,7 @@ msgid "Invalid authentication method set in configuration:"
msgstr ""
"Le fichier de configuration contient un type d'authentification invalide : "
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5075,24 +5086,24 @@ msgstr ""
"['SessionTimeZone'][/em]. phpMyAdmin utilise actuellement le fuseau horaire "
"par défaut du serveur de base de données."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vous devriez utiliser %s en version %s ou plus récente."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Erreur: disparité du jeton"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "Tentative d'écrasement de GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "vulnérabilité possible"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "Clé numérique détectée"
@@ -5313,7 +5324,7 @@ msgid "Set value: %s"
msgstr "Assigner la valeur: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Ramener la valeur par défaut"
@@ -5786,7 +5797,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Durée maximum d'exécution"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "Utiliser l'énoncé %s"
@@ -5795,7 +5806,7 @@ msgstr "Utiliser l'énoncé %s"
msgid "Save as file"
msgstr "Transmettre"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Jeu de caractères du fichier"
@@ -5822,15 +5833,15 @@ msgstr "Compression"
msgid "Put columns names in the first row"
msgstr "Afficher les noms de colonnes en première ligne"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Colonnes entourées par"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Caractère d'échappement"
@@ -5846,14 +5857,14 @@ msgstr "Remplacer NULL par"
msgid "Remove CRLF characters within columns"
msgstr "Enlève les caractères de fin de ligne à l'intérieur des colonnes"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Colonnes terminées par"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Lignes terminées par"
@@ -5923,7 +5934,7 @@ msgid "Save on server"
msgstr "Sauvegarder sur le serveur"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Écraser les fichiers existants"
@@ -5940,8 +5951,8 @@ msgstr "Inclure la valeur courante de l'AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Entourer les noms de tables et colonnes de guillemets obliques"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Mode de compatibilité SQL"
@@ -6062,15 +6073,15 @@ msgid "Customize browse mode."
msgstr "Personnaliser le mode affichage."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Personnaliser les options par défaut."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6098,7 +6109,7 @@ msgstr "Valeurs par défaut pour exportation"
msgid "Customize default export options."
msgstr "Personnaliser les valeurs utilisées habituellement."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Fonctionnalités"
@@ -6145,40 +6156,52 @@ msgstr "Panneau de navigation"
msgid "Customize appearance of the navigation panel."
msgstr "Personnaliser l'apparence du panneau de navigation."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Panneau de navigation"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Personnaliser le panneau de navigation"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Serveurs"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Options d'affichage des serveurs."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Options d'affichage des tables."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Panneau principal"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Autres paramètres de base"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Paramètres divers."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Titres de page"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6187,11 +6210,11 @@ msgstr ""
"[doc@faq6-27]documentation[/doc] pour les chaînes magiques pouvant être "
"utilisées."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Sécurité"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6199,23 +6222,23 @@ msgstr ""
"Veuillez noter que phpMyAdmin n'est qu'une interface et que ses "
"fonctionnalités ne limitent en rien MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Configuration de base"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Type d'authentification"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Paramètres d'authentification."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Configuration du serveur"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6223,15 +6246,15 @@ msgstr ""
"Configuration avancée, assurez-vous de connaître la signification de ces "
"options avant de les modifier."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Entrez les paramètres de connexion au serveur."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Stockage de configurations"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6241,11 +6264,11 @@ msgstr ""
"fonctionnalités additionnelles, voir [doc@linked-tables]phpMyAdmin "
"configuration storage[/doc] dans la documentation."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Suivi des changements"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6253,109 +6276,109 @@ msgstr ""
"Suivi des changements faits dans la base de données. Requiert le stockage de "
"configurations phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Personnaliser les valeurs pour exportation"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Personnaliser les valeurs pour importation"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Personnaliser le panneau de navigation"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Personnaliser le panneau principal"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Requêtes SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Boîte de requêtes SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Personnaliser les liens affichés dans les boîtes de requêtes SQL."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Paramètres des requêtes SQL."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Page de départ"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Personnaliser la page de départ."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Structure de base de données"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr "Choisissez les détails à afficher dans la liste des tables."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Structure de table"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Réglages pour la structure de table (liste des colonnes)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Onglets"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Personnaliser les onglets."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Afficher le schéma relationnel"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Taille du papier"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Champs texte"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Personnaliser les champs de saisie."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texte Texy"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Personnaliser les options par défaut"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Avertissements"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Désactiver certains avertissements affichés."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6363,15 +6386,15 @@ msgstr ""
"Active la compression [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] pour les "
"opérations d'importation et d'exportation."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Paramètres pour iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6379,11 +6402,11 @@ msgstr ""
"Si activé, phpMyAdmin continue le traitement des requêtes multi-énoncés même "
"en cas d'échec de l'un des énoncés."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignorer les erreurs dans les requêtes multi-énoncés"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6393,27 +6416,27 @@ msgstr ""
"point d'être atteinte. Ceci pourrait aider à importer des fichiers "
"volumineux, au détriment du respect des transactions."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Permettre l'interruption lors de l'importation"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Ne pas arrêter l'importation lors d'une erreur d'énoncé INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr "Ajouter ON DUPLICATE KEY UPDATE"
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
"Mettre à jour les données lorsque des clés dupliquées sont trouvées lors de "
"l'importation"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6421,69 +6444,69 @@ msgstr ""
"Format par défaut; soyez conscient que cette liste dépend du contexte (base "
"de données, table) et que seul SQL est toujours disponible."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Format du fichier d'importation"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Utiliser l'option LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Noms de colonnes en première ligne"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Ne pas importer les lignes vides"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importer les pourcentages en tant que décimales (12.00% devient .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Nombre de requêtes à sauter à partir du début."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Nombre de requêtes à ignorer"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Valeur initiale des zones de glissement"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Le nombre de lignes qui peuvent être insérées à la fois."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Nombre de lignes à insérer"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Nombre maximum de caractères affichés dans toute colonne non numérique en "
"mode Afficher."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Limiter le nombre de caractères dans la colonne"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6492,11 +6515,11 @@ msgstr ""
"Si TRUE, la déconnexion se produit pour tous les serveurs; si FALSE, on se "
"déconnecte seulement du serveur courant."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Détruire tous les cookies à la déconnexion"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6504,11 +6527,11 @@ msgstr ""
"Définit si le nom de l'utilisateur précédent devrait apparaître dans le "
"panneau de connexion en mode d'authentification [kbd]cookie[/kbd]."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Se souvenir du nom d'utilisateur"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6520,49 +6543,49 @@ msgstr ""
"conservé que pour la session; ceci est recommandé si l'environnement n'est "
"pas digne de confiance."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Stockage du cookie"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
"Définit pendant combien de temps (en secondes) la connexion demeure valide."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Durée de validité de la connexion en mode cookie"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Doubler la taille de la zone de texte pour les colonnes LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Zone de texte plus grande pour LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Nombre maximum de caractères quand une requête SQL est affichée."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Taille maximum des requêtes SQL affichées"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Les utilisateurs ne peuvent choisir une plus grande valeur"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Nombre maximum de bases de données affichées dans la liste."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Nombre maximum de bases de données"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6570,11 +6593,11 @@ msgstr ""
"Le nombre d'éléments qui peuvent être affichés pour chaque page du premier "
"niveau de l'arborescence de navigation."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Nombre maximum d'éléments au premier niveau"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6582,11 +6605,11 @@ msgstr ""
"Le nombre d'éléments qui peuvent être affichés pour chaque page de "
"l'arborescence de navigation."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Nombre maximum d'éléments dans la branche"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6596,19 +6619,19 @@ msgstr ""
"« Suivant » et « Précé"
"dent » seront affichés."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Nombre maximum de lignes à afficher"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Nombre maximum de tables affichées dans la liste des tables."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Nombre maximum de tables"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6616,43 +6639,43 @@ msgstr ""
"Le nombre d'octets qu'un script peut allouer, par exemple [kbd]32M[/kbd] "
"([kbd]0[/kbd] signifie illimité)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Limite mémoire"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"Dans le volet de navigation, remplace l'arborescence de la base de données "
"par un sélecteur"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Afficher la navigation de bases de données en tant qu'arborescence"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Relier au panneau principal en mettant en surbrillance la base de données ou "
"la table active."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Montrer le logo dans le panneau de navigation."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Affichage du logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "L'URL vers lequel pointera le logo dans le panneau de navigation."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL du lien sous le logo"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6660,27 +6683,27 @@ msgstr ""
"Pour la fenêtre principale, ([kbd]main[/kbd]) ou dans une nouvelle fenêtre, "
"([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Fenêtre-cible pour la page ouverte lors d'un clic sur le logo"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Montrer le choix de serveurs au haut du panneau de navigation."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Affiche la liste des serveurs"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Cible de l'icône d'accès rapide"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Cible de la deuxième icône d'accès rapide"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6688,15 +6711,15 @@ msgstr ""
"Définit le nombre minimum d'éléments (tables, vues, procédures et "
"événements) nécessaires pour afficher la boîte de filtrage."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Nombre minimum d'éléments pour afficher la boîte de filtrage"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Nombre minimum de bases de données pour activer le filtre"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6704,107 +6727,167 @@ msgstr ""
"Regrouper les éléments dans l'arborescence de navigation (déterminé par le "
"séparateur défini dans les onglets Bases de données et Tables ci-haut)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Regrouper les éléments dans l'arborescence"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Chaîne qui sépare les noms de bases de données en niveaux."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Séparateur pour l'arborescence des bases de données"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Chaîne qui sépare les noms de table en niveaux."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Séparateur pour l'arborescence des noms de tables"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Nombre de niveaux pour l'arborescence des tables"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Faire ressortir le nom du serveur dans le panneau de navigation."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Active la surbrillance"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"S'il faut offrir la possibilité d'expansion de l'arborescence dans le "
"panneau de navigation."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Permettre l'expansion de l'arborescence dans la navigation"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Afficher/cacher la liste des tables"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"S'il faut offrir la possibilité d'expansion de l'arborescence dans le "
+"panneau de navigation."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Montrer les versions"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Afficher la navigation de bases de données en tant qu'arborescence"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Montrer les fonctions"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Afficher les processus"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Montrer les versions"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Afficher la navigation de bases de données en tant qu'arborescence"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "Nombre maximum de tables récentes; mettre 0 pour désactiver."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Le nombre maximum de tables préférées; définir à 0 pour désactiver."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Tables récemment utilisées"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Il s'agit des liens Modifier, Copier et Effacer."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "À quel endroit afficher les liens pour chaque ligne de données"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
"Si vous souhaitez afficher les liens de la ligne même en l'absence d'une clé "
"unique."
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr "Afficher les liens de ligne quand même"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
"Utiliser l'ordre naturel pour trier les noms de tables et de bases de "
"données."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Ordre naturel"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Afficher seulement des icônes, seulement du texte ou les deux."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Barre de navigation"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Sert à augmenter la vitesse des transferts HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Tampon de sortie GZip"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6812,19 +6895,19 @@ msgstr ""
"[kbd]SMART[/kbd] signifie un ordre décroissant pour les colonnes TIME, DATE, "
"DATETIME et TIMESTAMP, et croissant pour les autres."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Ordre de tri par défaut"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Connexions persistantes au serveur MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Connexions persistantes"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6833,11 +6916,11 @@ msgstr ""
"Désactiver l'avertissement affiché sur la page Structure de bases de données "
"si l'une des tables du stockage de configurations phpMyAdmin est manquante."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tables manquantes pour le stockage de configurations phpMyAdmin"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6845,11 +6928,11 @@ msgstr ""
"Désactive l'avertissement par défaut qui est affiché lorsqu'un écart entre "
"la version de la bibliothèque et du serveur MySQL est détecté."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Avertissement d'écart Serveur/bibliothèque"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6857,27 +6940,27 @@ msgstr ""
"Désactiver l'avertissement affiché sur la page Structure de bases de données "
"si une des colonnes utilise un mot réservé MySQL."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Avertissement de mot réservé MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Comment afficher les onglets de menu"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Comment afficher divers liens d'action"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Empêche l'édition des colonnes BLOB et BINARY."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Protéger les colonnes avec contenu binaire"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6887,109 +6970,109 @@ msgstr ""
"configurations phpMyAdmin). Si désactivé, utilise Javascript pour afficher "
"un historique temporaire (sera perdu à la fermeture de la fenêtre)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Historique permanent des requêtes"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Le nombre de requêtes à conserver dans l'historique."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Taille de l'historique"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Détermine quelles fonctions seront utilisées pour effectuer la conversion "
"des caractères."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Moteur de conversion"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "En affichant les tables, l'ordre de tri de chaque table est mémorisé."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Mémoriser l'ordre de tri de la table"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Ordre de tri par défaut pour les tables comportant une clé primaire."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Ordre de tri par défaut pour la clé primaire"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Répète les en-têtes toutes les X cellules, [kbd]0[/kbd] désactive ceci."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Répéter les en-têtes"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Édition de grille : action de déclenchement"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Affichage relationnel"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Pour les options d'affichage"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
"Édition de grille : sauvegarder en une étape tous les éléments modifiés"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
"Répertoire où les exportations peuvent être sauvegardées sur le serveur."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Répertoire de sauvegarde"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Laisser vide si non utilisé."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Ordre d'autorisation des serveurs"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Laisser vide pour la valeur par défaut."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Règles d'autorisation des serveurs"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Permettre les connexions sans fournir de mot de passe"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Permettre une connexion à root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Fuseau horaire pour la session"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6997,16 +7080,16 @@ msgstr ""
"Définit le décalage réel; possiblement différent de celui de votre serveur "
"de base de données"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Domaine de protection à afficher lors d'une authentification HTTP Basic."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "Domaine de protection HTTP"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7016,19 +7099,19 @@ msgstr ""
"com]l'authentification matérielle Swekey[/a] (ne pas placer sous la racine "
"des documents; suggestion : /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "Fichier de configuration SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Type d'authentification."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Type d'authentification"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7036,11 +7119,11 @@ msgstr ""
"Laisser vide pour désactiver le support des [a@http://wiki.phpmyadmin.net/"
"pma/bookmark]signets[/a], suggestion : [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Table pour signets"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7048,33 +7131,33 @@ msgstr ""
"Laisser vider pour désactiver les commentaires sur les colonnes et les types "
"MIME; suggestion : [kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Table pour informations sur les colonnes"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Comprime la connexion au serveur MySQL."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Utiliser le mode compression sur la connexion"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Comment se connecter au serveur, utilisez [kbd]tcp[/kbd] si vous êtes dans "
"le doute."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Type de connexion"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Mot de passe de l'utilisateur de contrôle"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7082,11 +7165,11 @@ msgstr ""
"Un compte MySQL spécial avec des permissions limitées, voir [a@http://wiki."
"phpmyadmin.net/pma/controluser] notre wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Utilisateur de contrôle"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7094,11 +7177,11 @@ msgstr ""
"Un serveur alternatif pour le stockage des configurations; laisser vide pour "
"utiliser le serveur déjà défini."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Serveur de contrôle"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7108,15 +7191,15 @@ msgstr ""
"configurations ; laisser vide pour utiliser le port par défaut ou déjà "
"défini si le serveur est serveur de contrôle."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Port de contrôle"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Masquer les bases dont le nom correspond à l'expression (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7124,15 +7207,15 @@ msgstr ""
"Voir [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]ce bogue phpMyAdmin[/"
"a] et [a@http://bugs.mysql.com/19588]ce bogue MySQL[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Empêcher l'accès à INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Masquer les bases de données"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7140,23 +7223,23 @@ msgstr ""
"Laisser vider pour désactiver l'historique des requêtes SQL, suggestion : "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Tables pour historique des requêtes SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Le nom du serveur sur lequel MySQL est en exécution."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Nom du serveur"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL pour quitter"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7164,15 +7247,15 @@ msgstr ""
"Limite le nombre de préférences de tables qui sont stockées dans la base de "
"données, les entrées les plus anciennes sont automatiquement effacées."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Nombre maximum de préférences de tables à conserver"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Table pour les signets de recherche sauvegardés"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7180,11 +7263,11 @@ msgstr ""
"Laisser vider pour désactiver le support des recherches sauvegardées, "
"suggestion : [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Table pour les colonnes centrales"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7192,15 +7275,15 @@ msgstr ""
"Laisser vider pour désactiver les colonnes centrales, suggestion : "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Essayer de se connecter sans mot de passe."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Connexion sans mot de passe"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7210,31 +7293,31 @@ msgstr ""
"caractère d'échappement si vous les employez de manière littérale, par "
"exemple [kbd]'ma\\_base'[/kbd] et non [kbd]'ma_base'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Restreindre la liste des bases de données"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
"Laisser vide si vous n'utilisez pas la méthode d'authentification config."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Mot de passe pour méthode config"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Laisser vider pour désactiver le support des schémas en PDF, suggestion : "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "Table pour décrire les schémas en PDF"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7244,22 +7327,22 @@ msgstr ""
"Voir [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Laisser vider pour "
"désactiver. Suggestion : [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nom de base de données"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Port sur lequel MySQL est en écoute, laisser vide pour utiliser la valeur "
"par défaut."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Port"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7267,11 +7350,11 @@ msgstr ""
"Laisser vide pour ne pas conserver de manière «persistante» les tables "
"récemment utilisées; suggestion : [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Table récemment utilisée"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7279,11 +7362,11 @@ msgstr ""
"Laisser vide pour ne pas conserver de manière «persistante» les tables "
"préférées; suggestion : [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Table pour les tables préférées"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7291,11 +7374,11 @@ msgstr ""
"Laisser vider pour désactiver le support [a@http://wiki.phpmyadmin.net/pma/"
"relation]relationnel[/a], suggestion : [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Table relationnelle"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7303,44 +7386,44 @@ msgstr ""
"Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] pour un exemple."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Nom de session pour méthode signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "URL pour connexion"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Interface de connexion du serveur MySQL, laisser vide pour utiliser la "
"valeur par défaut."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Interface de connexion socket"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Utiliser SSL pour la connexion au serveur MySQL."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Utiliser SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
"Laisser vider pour désactiver, suggestion : [kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Table pour coordonnées du schéma en PDF et du concepteur"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7348,11 +7431,11 @@ msgstr ""
"Sert à définir les colonnes descriptives, laisser vide pour désactiver; "
"suggestion : [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Table pour colonnes descriptives"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7360,11 +7443,11 @@ msgstr ""
"Laisser vider pour ne pas conserver les préférences d'interface de tables de "
"manière «persistante»; suggestion : [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Table de stockage des préférences d'interface de table"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7372,11 +7455,11 @@ msgstr ""
"Définit si un énoncé DROP DATABASE IF EXISTS sera ajouté en première ligne "
"du journal lors de la création d'une base de données."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Ajouter DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7384,11 +7467,11 @@ msgstr ""
"Définit si un énoncé DROP TABLE IF EXISTS sera ajouté en première ligne du "
"journal lors de la création d'une table."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Ajouter DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7396,21 +7479,21 @@ msgstr ""
"Définit si un énoncé DROP VIEW IF EXISTS sera ajoutée en première ligne dans "
"le journal lors de la création de la vue."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Ajouter DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Définit la liste des énoncés que le mécanisme d'auto-création utilise pour "
"les nouvelles versions."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Énoncés à suivre"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7418,11 +7501,11 @@ msgstr ""
"Laisser vide pour désactiver le suivi des changements SQL; suggestion : "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Table pour le suivi des changements SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7430,11 +7513,11 @@ msgstr ""
"Définit si le mécanisme de suivi crée automatiquement des versions pour les "
"tables et les vues."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Création automatique de versions"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7442,11 +7525,11 @@ msgstr ""
"Laisser vide pour désactiver les préférences utilisateur; suggestion : "
"[kbd]pma__config[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Table de stockage des préférences utilisateur"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7456,11 +7539,11 @@ msgstr ""
"d'activer les menus configurables; si vous laissez l'un ou d'autre vide, "
"cette fonctionnalité sera désactivée, suggestion : [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Table des utilisateurs"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7470,11 +7553,11 @@ msgstr ""
"menus configurables; si vous laissez l'un ou d'autre vide, cette "
"fonctionnalité sera désactivée, suggestion : [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Table des groupes d'utilisateurs"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7483,15 +7566,15 @@ msgstr ""
"d'afficher les éléments de navigation; suggestion : "
"[kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Table contenant les éléments de navigation cachés"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Utilisateur pour méthode config"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7499,19 +7582,19 @@ msgstr ""
"Une description conviviale de ce serveur. Laisser vide pour utiliser à la "
"place le nom du serveur."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Nom à afficher pour ce serveur"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Si on devrait montrer un bouton «Tout afficher»."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Permettre l'affichage de toutes les lignes"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7521,57 +7604,57 @@ msgstr ""
"cependant on peut exécuter un changement de mot de passe manuellement avec "
"la commande appropriée."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Afficher le dialogue de changement de mot de passe"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Afficher le formulaire de création de base de données"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Montrer ou cacher une colonne affichant les commentaires pour toutes les "
"tables."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr "Montrer les commentaires de table"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Montrer ou cacher une colonne contenant la date de création pour toutes les "
"tables."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Montrer la date de création"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Montrer ou cacher une colonne contenant la date de dernière mise à jour pour "
"toutes les tables."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Montrer la date de dernière mise à jour"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Montrer ou cacher une colonne contenant la date de dernière vérification "
"pour toutes les tables."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Montrer la date de dernière vérification"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7579,27 +7662,27 @@ msgstr ""
"Définit si les champs des types de données MySQL doivent être affichés en "
"mode modification/insertion."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Montrer les champs de type de données"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "En insertion ou édition, montrer la colonne contenant les fonctions."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Montrer les fonctions"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Afficher ou non les explications."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Montrer les explications"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7607,57 +7690,57 @@ msgstr ""
"Montre un lien vers le résultat de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Afficher un lien vers phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Afficher les informations détaillées sur le serveur MySQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Détermine si les requêtes SQL générées par phpMyAdmin devraient être "
"affichées."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Afficher les requêtes SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Détermine si la boîte de requêtes devrait rester afficher après exécution."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Conserver la boîte de requêtes"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Affiche les statistiques sur les bases de données et les tables (espace "
"utilisé)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Afficher les statistiques"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Marque les tables utilisées et rend possible l'affichage des bases de "
"données comportant des tables verrouillées."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Saute les tables verrouillées"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7665,11 +7748,11 @@ msgstr ""
"Désactiver l'avertissement par défaut qui s'affiche sur la page d'accueil si "
"Suhosin est détecté."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Avertissement Suhosin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7679,11 +7762,11 @@ msgstr ""
"paramètre PHP session.gc_maxlifetime est moindre que celle de "
"`LoginCookieValidity`."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Durée de validité de la connexion en mode cookie"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7691,11 +7774,11 @@ msgstr ""
"Taille des zones de texte (colonnes) en mode édition, cette valeur sera "
"augmentée pour les zones SQL (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Taille horizontale pour une zone de texte"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7703,32 +7786,32 @@ msgstr ""
"Taille des zones de texte (lignes) en mode édition, cette valeur sera "
"augmentée pour les zones SQL (*2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Taille verticale pour une zone de texte"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
"Titre de la fenêtre de navigateur quand une base de données est choisie."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Titre de la fenêtre de navigateur quand rien n'est choisi."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Titre par défaut"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Titre de la fenêtre du navigateur quand un serveur est choisi."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Titre de la fenêtre du navigateur quand une table est choisie."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7740,29 +7823,29 @@ msgstr ""
"Forwarded-For) provient du serveur 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste des serveurs mandataires de confiance en vue de IP allow/deny"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
"Répertoire sur le serveur, dans lequel vous téléchargez des fichiers en vue "
"de les importer."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Répertoire de téléchargement"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Permet la recherche dans la base de données au complet."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Permet une recherche dans toute la base de données"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7770,26 +7853,26 @@ msgstr ""
"Si désactivé, les utilisateurs ne peuvent régler aucune des options ci-bas, "
"peu importe la case à cocher à droite."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Active le menu Développeur dans les paramètres"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Vérifier la présence d'une nouvelle version"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Active la vérification de version sur la page principale."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Vérification de version"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7802,11 +7885,11 @@ msgstr ""
"installé n'a pas d'accès direct à Internet. Le format est «nom de serveur:"
"numéro de port»."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "URL du serveur mandataire"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7817,19 +7900,19 @@ msgstr ""
"fourni, l'authentification de base sera utilisée. Aucun autre type "
"d'authentification n'est permis pour le moment."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Utilisateur du serveur mandataire"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Le mot de passe pour s'authentifier sur le serveur mandataire."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Mot de passe du serveur mandataire"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7837,35 +7920,35 @@ msgstr ""
"Active la compression [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/"
"a] pour les opérations d'importation et d'exportation."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Saisissez la clé publique du service reCaptcha pour votre domaine."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Clé publique pour reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Saisissez la clé privée du service reCaptcha pour votre domaine."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Clé privée pour reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Choisissez l'action par défaut lors de l'envoi des rapports d'erreurs."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Envoyer le rapport d'erreurs"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7873,11 +7956,11 @@ msgstr ""
"Les requêtes sont exécutées en appuyant sur Entrée (au lieu de Ctrl + "
"Entrée). De nouvelles lignes seront insérées avec Maj + Entrée."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "La touche Entrée exécute les requêtes dans la console"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7885,7 +7968,7 @@ msgstr ""
"Activer le mode Configuration automatique qui vous permet de mettre en place "
"automatiquement les tables de configuration de stockage phpMyAdmin."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Activer le mode de Configuration automatique"
@@ -7911,44 +7994,44 @@ msgstr "Mode d'authentification « HTTP »"
msgid "Signon authentication"
msgstr "Mode d'authentification « signon »"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV via LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Tableur OpenDocument"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Rapide"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Personnalisé"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Options d'exportation des bases de données"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV pour MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Texte OpenDocument"
@@ -7979,7 +8062,7 @@ msgstr ""
"Vous utilisez l'extension mysql qui est désapprouvée dans phpMyAdmin. "
"Veuillez envisager d'installer l'extension mysqli."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
"Chargement impossible des greffons de schéma, veuillez vérifier votre "
@@ -8046,7 +8129,7 @@ msgstr "Nouvelle table"
msgid "Number of columns"
msgstr "Nombre de colonnes"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Erreur lors du chargement des modules d'exportation !"
@@ -8089,11 +8172,11 @@ msgstr "Table(s) : "
msgid "Format:"
msgstr "Format : "
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Options spécifiques au format : "
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8101,52 +8184,52 @@ msgstr ""
"Faites défiler la page pour compléter les options du format choisi et "
"ignorez les options des autres formats."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Conversion de l'encodage : "
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Lignes : "
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Exporter quelques lignes"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Ligne de début : "
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Exporter toutes les lignes"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Sortie : "
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Sauvegarder sur le serveur dans le répertoire %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Modèle de nom de fichier : "
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ sera remplacé par le nom du serveur"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ sera remplacé par le nom de la base de données"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ sera remplacé par le nom de la table"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8158,64 +8241,76 @@ msgstr ""
"vont se produire: %3$s. Tout autre texte sera conservé tel quel. Se référer "
"au %4$sFAQ%5$s pour les détails."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "utiliser ceci pour les futures exportations"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Jeu de caractères du fichier : "
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Compression : "
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "«zippé »"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "«gzippé»"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Afficher les résultats"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Exporter les vues comme des tables"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Exporter les en-têtes de table"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Renommer les bases de données / tables / colonnes exportées"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Diriger la sortie vers un fichier"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Ignorer les tables de taille plus grande que"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Choisissez une base de données"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Choisissez une table"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nouveau nom pour la base de données"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nouveau nom de table"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Ancien nom de colonne"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nouveau nom de colonne"
@@ -8854,7 +8949,7 @@ msgid "Create an index on %s columns"
msgstr "Créer un index sur %s colonnes"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Cacher"
@@ -8990,11 +9085,6 @@ msgstr "Depuis"
msgid "To"
msgstr "Vers"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Exécuter"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Ajouter un préfixe de table : "
@@ -9207,22 +9297,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Une erreur s'est produite lors du chargement du panneau de navigation"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Nom du groupe : "
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Événements : "
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Fonctions : "
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procédures : "
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tables : "
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Vues : "
@@ -9246,7 +9342,7 @@ msgstr "Paramètres du panneau de navigation"
msgid "Reload navigation panel"
msgstr "Actualiser le panneau de navigation"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9255,27 +9351,27 @@ msgstr ""
"les performances. Désactiver le regroupement d'éléments dans le panneau de "
"navigation."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s résultat trouvé"
msgstr[1] "%s résultats trouvés"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filtrer par nom de bd ou regex"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Effacer le filtrage"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtrer par nom ou regex"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Tout réduire"
@@ -9309,7 +9405,7 @@ msgstr "Nouvelle colonne"
msgid "Database operations"
msgstr "Opérations sur base de données"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Montrer les éléments cachés"
@@ -10543,13 +10639,13 @@ msgstr "Nom des colonnes : "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Paramètres invalides pour l'importation CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10559,13 +10655,13 @@ msgstr ""
"orthographiés correctement, séparés par des virgules et non entourés de "
"guillemets."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Format invalide pour les données CSV à la ligne %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d."
@@ -10959,47 +11055,47 @@ msgstr "Formate le texte en JSON avec la coloration syntaxique."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formate le texte en XML avec la coloration syntaxique."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Erreur: relation déjà existante."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Relation de type FOREIGN KEY ajoutée."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Erreur: relation de clé étrangère non ajoutée !"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Erreur : Un index est manquant sur la colonne."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Erreur : fonctionnalités relationnelles désactivées !"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Relation interne ajoutée."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Erreur: relation interne non ajoutée !"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Relation de type FOREIGN KEY supprimée."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Erreur: relation de type FOREIGN KEY non ajoutée !"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Erreur : relation interne non ajoutée !"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Relation interne supprimée."
@@ -11085,21 +11181,27 @@ msgstr "Enregistrement des recherches (requête par un exemple)"
msgid "Managing Central list of columns"
msgstr "Gestion de la liste centrale de colonnes"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Mémoriser l'ordre de tri de la table"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Guide rapide de configuration des fonctions avancées : "
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Créez les tables requises au moyen de %screate_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Créez un utilisateur pma et donnez-lui accès à ces tables."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11108,17 +11210,17 @@ msgstr ""
"(config.inc.php), en vous basant par exemple sur config."
"sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration "
"modifié."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "pas de description"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
@@ -11129,7 +11231,7 @@ msgstr ""
"base de données pour y mettre en place la configuration de stockage "
"phpMyAdmin."
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -11138,7 +11240,7 @@ msgstr ""
"%sCréer%s une base de données nommée « phpmyadmin » et la configuration du "
"stockage de phpMyAdmin dans cette base."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@@ -11146,7 +11248,7 @@ msgstr ""
"%sCréer%s le stockage de configurations phpMyAdmin dans la base de données "
"active."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11901,7 +12003,7 @@ msgstr "Aucun évènement à afficher."
msgid "Ignoring unsupported language code."
msgstr "Ce code de langue non pris en charge est ignoré."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Serveur actuel : "
@@ -13750,9 +13852,6 @@ msgstr "Affichage du code PHP"
#: libraries/sql.lib.php:1767
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
@@ -13763,9 +13862,6 @@ msgstr ""
#: libraries/sql.lib.php:1778
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, Edit, Copy "
"and Delete features may result in undesired behavior. %s"
@@ -16700,9 +16796,6 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Supprimer les données de suivi de cette table"
-#~ msgid "Show versions"
-#~ msgstr "Montrer les versions"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -17976,9 +18069,6 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0"
#~ msgid "Reset"
#~ msgstr "Réinitialiser"
-#~ msgid "Show processes"
-#~ msgstr "Afficher les processus"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Réinitialiser"
diff --git a/po/fy.po b/po/fy.po
index 7a84eddbe6..71542b9cb8 100644
--- a/po/fy.po
+++ b/po/fy.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-04-15 22:05+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "annulearje"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr ""
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Wachtwurd generearje"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generearje"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Wachtwurd wizigjen"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Mear"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tabellen"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "Overview"
msgid "views"
msgstr "Oersjoch"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Prosedueres"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "barren"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Funksjes"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2367,441 +2408,441 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Tabelopmerkings"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Folgjende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Hjoed"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "jannewaris"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "febrewaris"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "maart"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "april"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "maaie"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "juny"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "july"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "augustus"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "septimber"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "oktober"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "novimber"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "desimber"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "des"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "snein"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "moandei"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "tiisdei"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "woansdei"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "tongersdei"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "freed"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "sneon"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "si"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "mo"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "ti"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "to"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "fr"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "so"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "si"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "mo"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "ti"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "wo"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "fr"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "so"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Wike"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Oere"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minút"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekonde"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Search in database"
msgid "Please enter a valid date"
msgstr "Sykje yn de database"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2872,16 +2913,16 @@ msgstr "per oere"
msgid "per day"
msgstr "per dei"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Lettertypegrutte"
@@ -2900,7 +2941,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3094,7 +3135,7 @@ msgid "Count:"
msgstr "Oantal"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3265,25 +3306,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Details…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3357,6 +3398,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr ""
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr ""
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3410,7 +3461,7 @@ msgid "All"
msgstr "Alle"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Oantal rigen:"
@@ -3702,7 +3753,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3713,34 +3764,13 @@ msgstr "Server"
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktuer"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3835,8 +3865,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Databases"
@@ -3939,7 +3969,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr ""
@@ -4008,16 +4038,6 @@ msgstr "Joins"
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabellen"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4518,7 +4538,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4535,7 +4555,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4650,17 +4670,6 @@ msgstr ""
msgid "Rows"
msgstr "Rigen"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4818,7 +4827,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4826,24 +4835,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5073,7 +5082,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5468,7 +5477,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5477,7 +5486,7 @@ msgstr ""
msgid "Save as file"
msgstr "Bewarje as triem"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5504,15 +5513,15 @@ msgstr "Kompresje"
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5528,14 +5537,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5605,7 +5614,7 @@ msgid "Save on server"
msgstr "Bewarje op server"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5622,8 +5631,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL-kompatibiliteitsmoadus"
@@ -5736,15 +5745,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -5772,7 +5781,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Opsjes"
@@ -5817,341 +5826,351 @@ msgstr "Navigaasjepaniel"
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigaasjepaniel"
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servers"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Haadpaniel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Sidetitels"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Serverkonfiguraasje"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL-queries"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL-queryfjild"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Databasestruktuer"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Tabelstruktuer"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Papierformaat"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Tekstfjilden"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! tekst"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Warskôgings"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Faluta ymportearje ($5.00 nei 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6159,545 +6178,589 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Unthâldlimyt"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Table comments"
+msgid "Show tables in tree"
+msgstr "Tabelopmerkings"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
-msgstr ""
+#, fuzzy
+#| msgid "Procedures"
+msgid "Show procedures in tree"
+msgstr "Prosedueres"
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr "Natuerlike folchoarder"
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr "Natuerlike folchoarder"
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational key"
msgid "Relational display"
msgstr "Relasjonele kaai"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sessywearde"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey-konfiguraasjetriem"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Blêdwizertabel"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -6705,526 +6768,526 @@ msgstr ""
"Mear ynformaasje op [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA-"
"bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL-queryskiednistabel"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Serverhostnamme"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "User groups table"
msgid "Central columns table"
msgstr "Brûkersgroepentabel"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasenamme"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Serverpoarte"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorites"
msgid "Favorites table"
msgstr "Favoriten"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Relaasjetabel"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Serversocket"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Brûkerstabel"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Brûkersgroepentabel"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabelopmerkings"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin-warskôging"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Standerttitel"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7232,52 +7295,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Ferzjekontrôle"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7285,80 +7348,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Proxy url"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Proxy brûkersnamme"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Proxy wachtwurd"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7382,44 +7445,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-rekkenblêd"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Oanpast"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV foar MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
@@ -7448,7 +7511,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7513,7 +7576,7 @@ msgstr ""
msgid "Number of columns"
msgstr "Oantal kolommen"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7556,62 +7619,62 @@ msgstr "Tabel(len):"
msgid "Format:"
msgstr "Opmaak:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Rigen:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Utfier:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7619,64 +7682,74 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Kompresje:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table names"
+msgid "Export tables as separate files"
+msgstr "Tabelnammen eksportearje"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr ""
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr ""
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nije databasenamme"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nij tabelnamme"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Alde kolomnamme"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nije kolomnamme"
@@ -8232,7 +8305,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Ferbergje"
@@ -8364,11 +8437,6 @@ msgstr "Fan"
msgid "To"
msgstr "Nei"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Ferstjoere"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8583,22 +8651,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Groepnamme:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Barrens:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funksjes:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Prosedueres:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tabellen:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8624,33 +8698,33 @@ msgstr "Navigaasjepaniel"
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Alles gearteare"
@@ -8684,7 +8758,7 @@ msgstr "Nij"
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9833,26 +9907,26 @@ msgstr "Kolomnammen: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10189,47 +10263,47 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr ""
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr ""
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr ""
@@ -10314,54 +10388,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "gjin beskriuwing"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11078,7 +11156,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Hjoeddeistige server:"
diff --git a/po/gl.po b/po/gl.po
index 3a0dd27eeb..142c08fcf8 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-10-10 23:59+0200\n"
"Last-Translator: Xosé Calvo
to toggle column's visibility"
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr ""
"Prema a frecha para a baixo
para conmutar a visibilidade da columna"
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Mostrar todo"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2458,170 +2501,170 @@ msgstr ""
"relacionadas coa edición da grecha, caixa de selección, editar, copiar e "
"eliminar ligazóns poden non funcionar despois de gravar."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "Cadea orixinal"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Cancelar"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Interrompido"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "Opcións de importación por omisión"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "Limiar do ficheiro de rexistro"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Escoller táboas"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Tamén se poden editar a maioría dos valores
preméndoas directamente "
"dúas veces."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Tamén se poden editar a maioría dos valores
premendo directamente o seu "
"contido."
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
msgstr "Ir á ligazón"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Copy column name"
msgid "Copy column name."
msgstr "Copiar nome da columna"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Prema co botón dereito para copiar o nome da columna o portarretallos."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Xerar un contrasinal"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Xerar"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Cambiar o contrasinal"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Máis"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Mostrar o panel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Agochar o panel"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show hidden navigation tree items."
msgstr "Mostrar o logotipo no panel de navegación"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main panel"
msgid "Link with main panel"
msgstr "Personalizar o panel principal"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main panel"
msgid "Unlink from main panel"
msgstr "Personalizar o panel principal"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Táboas"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "Vistas"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Procedementos"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "acontecemento"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Funcións"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"Non foi posíbel atopar a páxina pedida no historial; pode que caducase."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2631,30 +2674,30 @@ msgstr ""
"A versión máis recente é %s, publicada o %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ",última versión estable:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "actualizada"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Crear unha vista"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
#| msgid "Server port"
msgid "Send Error Report"
msgstr "Porto do servidor"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
#, fuzzy
#| msgid "An error has occured while loading the navigation tree"
msgid ""
@@ -2662,457 +2705,457 @@ msgid ""
"report?"
msgstr "Produciuse un erro ao cargar a árbore de navegación"
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "Cambiar a configuración"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Show open tables"
msgid "Show Report Details"
msgstr "Mostrar as táboas abertas"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignorar"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Mostrar esta consulta aquí outra vez"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "Seguro que quere executar \"%s\"?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Executed queries"
msgid "%s queries executed %s times in %s seconds."
msgstr "Consultas executadas"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Comentarios da táboa"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Agochar os resultados da busca"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Seguinte"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Hoxe"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Xaneiro"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Febreiro"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Marzo"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Abril"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Maio"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Xuño"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Xullo"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Agosto"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Setembro"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Outubro"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Novembro"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Decembro"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Luns"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Martes"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Mércores"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Xoves"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Venres"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sá"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Mé"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "X"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sá"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Sm"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendario-mes-ano"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Segundo"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Empregar un campo de texto"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "Non é un número de porto válido"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "Non é un número de porto válido"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "Non é un número de porto válido"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "Non é un número de porto válido"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "Non é un número de porto válido"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "Non é un número de porto válido"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter only digits"
msgstr "Introduza o captcha correcto!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "Non é un número de porto válido"
-#: js/messages.php:776
+#: js/messages.php:777
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter no more than {0} characters"
msgstr "Introduza o captcha correcto!"
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter at least {0} characters"
msgstr "Introduza o captcha correcto!"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "Non é un número de porto válido"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Introduza o captcha correcto!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Non é un número de porto válido"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "Non é un número de porto válido"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "Non é un número de porto válido"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3187,18 +3230,18 @@ msgstr "por hora"
msgid "per day"
msgstr "por día"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "O ficheiro de configuración existente (%s) non e lexíbel."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Os permisos do ficheiro de configuración son incorrectos; non debería poder "
"escribir nel todo o mundo!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Tamaño da letra"
@@ -3219,7 +3262,7 @@ msgid "Requery"
msgstr "subconsulta"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3441,7 +3484,7 @@ msgid "Count:"
msgstr "Cantidade"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3638,7 +3681,7 @@ msgstr "A mostrar o marcador"
msgid "Delete bookmark"
msgstr "Eliminar a relación"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3646,19 +3689,19 @@ msgstr ""
"O servidor non responde (ou o socket local do servidor non se configurou "
"correctamente)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "O servidor non responde."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Comprobe os privilexios do directorio que contén a base de datos."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detalles…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Fallou a conexión para «controluser» tal e como está definida na "
@@ -3734,6 +3777,16 @@ msgstr "As palabras divídense cun carácter de espazo (« »)."
msgid "Inside tables:"
msgstr "Dentro das táboas:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Escoller todo"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Anular a selección de todo"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Dentro da columna:"
@@ -3791,7 +3844,7 @@ msgid "All"
msgstr "Todo"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Número de filas:"
@@ -4115,7 +4168,7 @@ msgstr ""
"eliminar un deles."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Servidor"
@@ -4126,34 +4179,13 @@ msgstr "Servidor"
msgid "View"
msgstr "Vista"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Estrutura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4250,8 +4282,8 @@ msgstr "Columnas da área de texto"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Bases de datos"
@@ -4366,7 +4398,7 @@ msgid "Recent"
msgstr "Reiniciar"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4445,16 +4477,6 @@ msgstr "Unións"
msgid "Sorting"
msgstr "Ordenación"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Táboas"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Coordinador de transaccións"
@@ -5043,7 +5065,7 @@ msgstr "Tamaño máximo: %s%s"
msgid "MySQL said: "
msgstr "Mensaxes do MySQL: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Explicar o SQL"
@@ -5060,7 +5082,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Sen código PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Crear código PHP"
@@ -5177,17 +5199,6 @@ msgstr "Usar este valor"
msgid "Rows"
msgstr "Filas"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Datos"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5363,7 +5374,7 @@ 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:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5371,24 +5382,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Debería actualizar a %s %s ou posterior."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Erro: o token non coincide"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "Tentouse substituír GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "posíbel vulnerabilidade (exploit)"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "detectouse unha tecla numérica"
@@ -5628,7 +5639,7 @@ msgid "Set value: %s"
msgstr "Pór como valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Restaurar o valor por omisión"
@@ -6201,7 +6212,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Tempo máximo de execución"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -6211,7 +6222,7 @@ msgstr "Engadir unha instrución %s"
msgid "Save as file"
msgstr "Enviar (gravar nun ficheiro)
"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Conxunto de caracteres do ficheiro"
@@ -6238,15 +6249,15 @@ msgstr "Compresión"
msgid "Put columns names in the first row"
msgstr "Pór os nomes das columnas na primeira fila"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Columnas delimitadas por"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Carácter de escape das columnas"
@@ -6262,14 +6273,14 @@ msgstr "Substituír NULL por"
msgid "Remove CRLF characters within columns"
msgstr "Eliminar os caracteres CRLF nas columnas"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Columnas terminadas en"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Liñas rematadas en"
@@ -6339,7 +6350,7 @@ msgid "Save on server"
msgstr "Gravar no servidor"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Eliminar o(s) ficheiro(s) xa existente(s)"
@@ -6356,8 +6367,8 @@ msgstr "Engadir o valor incremental (AUTO_INCREMENT)"
msgid "Enclose table and column names with backquotes"
msgstr "Encerrar os nomes das táboas e das columnas entre aspas invertidas"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Modo de compatiblidade de SQL"
@@ -6493,17 +6504,17 @@ msgid "Customize browse mode."
msgstr "Personalizar o modo de navegación"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "Personalizar as opcións por omisión"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6537,7 +6548,7 @@ msgstr "Exportar o predeterminado"
msgid "Customize default export options."
msgstr "Personalizar as opcións de exportación por omisión"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Funcionalidades"
@@ -6594,46 +6605,58 @@ msgstr "Panel de navegación"
msgid "Customize appearance of the navigation panel."
msgstr "Personalizar a aparencia do panel de navegación"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Panel de navegación"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Personalizar o panel de navegación"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servidores"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "Opcións de exhibición dos servidores"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "Opcións de exhibición das táboas"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Panel principal"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Office da Microsoft"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Outras opcións principais"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "Configuracións que non cadraban noutra parte"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Títulos de páxina"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6647,11 +6670,11 @@ msgstr ""
"[doc@cfg_TitleTable]documentación[/doc] para coñecer as cadeas máximas que "
"se poden empregar para obter valores especiais."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Seguranza"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6663,25 +6686,25 @@ msgstr ""
"Lembre que o phpMyAdmin é simplemente unha interface de usuario e que as "
"súas funcionalidades non limitan o MySQL"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Configuración básica"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Autenticación"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "Configuración da autenticación"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Configuración do servidor"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6693,17 +6716,17 @@ msgstr ""
"Configuración avanzada do servidor; non altere estas opcións a non ser que "
"saiba o que está a facer"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "Introduza os parámetros da conexión ao servidor"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Almacenamento da configuración"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
@@ -6717,11 +6740,11 @@ msgstr ""
"Configurar o phpMyAdmin para ter acceso a funcionalidades adicionais, vexa "
"[doc@linked-tables]infraestrutura de táboas ligadas[/doc] na documentación"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Seguimento de cambios"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6729,58 +6752,58 @@ msgstr ""
"Seguimento de cambios feitos na base de datos. Require o almacenamento de "
"configuración de phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Personalizar as opcións de exportación"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Personalizar as opcións de importación por omisión"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Personalizar o panel de navegación"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Personalizar o panel principal"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Consultas SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Caixa de consultas de SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "Personalizar as ligazóns que aparecen nas caixas de consulta de SQL"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "Preferencias das consultas de SQL"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Inicio"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "Personalizar a páxina de inicio"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Estrutura da base de datos"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
#, fuzzy
#| msgid ""
#| "Choose which details to show in the database structure (list of tables)"
@@ -6790,67 +6813,67 @@ msgstr ""
"Escolla os detalles que desexe mostrar na estrutura da base de datos (lista "
"de táboas)"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Estrutura da táboa"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
#, fuzzy
#| msgid "Settings for the table structure (list of columns)"
msgid "Settings for the table structure (list of columns)."
msgstr "Configuración da estrutura da táboa (lista de columnas)"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Lapelas"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "Escolla como quere que funcionen as lapelas"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Mostrar o esquema relacional"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Tamaño do papel"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Campos de texto"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "Personalizar os campos de entrada de texto"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texto para Texy!"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Personalizar as opcións por omisión"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Avisos"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Desactiva algúns dos avisos mostrados por phpMyAdmin"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6862,15 +6885,15 @@ msgstr ""
"Activar a compresión [a@http://gl.wikipedia.org/wiki/Gzip]gzip[/a] nas "
"operacións de importación e exportación"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Parámetros extra para iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6882,11 +6905,11 @@ msgstr ""
"Se estiver activado, o phpMyAdmin continúa a calcular as consultas de "
"afirmacións múltiplas mesmo se unha destas consultas fallase"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignorar os erros de afirmacións múltiplas"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6896,25 +6919,25 @@ msgstr ""
"que se achega ao límite de tempo. Isto pode ser unha boa maneira de importar "
"ficheiros grandes; porén, pode rachar as transaccións."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Importación parcial: permitir interromper"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Non interromper nos erros de INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6926,62 +6949,62 @@ msgstr ""
"Formato por omisión; lembre que esta listaxe depende da localización (base "
"de datos, táboa) e só SQL está sempre dispoñíbel"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Formato do ficheiro importado"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Utilice a palabra chave LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Nomes das columnas na primeira fileira"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Non importar as fileiras baleiras"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importar as moedas ($5.00 a 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importar as porcentaxes como decimais (12.00% a .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "Número de consultas que se ignoran dende o comezo"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Importación parcial: ignorar as consultas"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Non empregar AUTO_INCREMENT cos valores cero"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Estado inicial dos controis desprazábeis"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "Cantas fileiras se poden inserir dunha volta"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Número de fileiras inseridas"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
#, fuzzy
#| msgid ""
#| "Maximum number of characters shown in any non-numeric column on browse "
@@ -6992,11 +7015,11 @@ msgstr ""
"Número máximo de caracteres mostrados nunha columna non numérica na vista de "
"exploración"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Limitar os caracteres das columnas"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -7007,11 +7030,11 @@ msgstr ""
"FALSO fai que sexa máis doado esquecer saír dos outros servidores cando se "
"estea conectado a varios servidores."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Eliminar todas as cookies ao saír"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -7023,11 +7046,11 @@ msgstr ""
"Definir se se debe lembrar ou non o rexistro previo no modo de autenticación "
"mediante cookies."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Lembrar o nome de usuario"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -7039,57 +7062,57 @@ msgstr ""
"existente e que se elimina cando se feche a xanela do navegador. Recoméndase "
"isto para os ambientes que non sexan de confianza."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Almacenar as cookies de rexistro"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Definir por cantos segundos é válida unha cookie"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Validez das cookies de rexistro"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Tamaño dobre da área de texto nas columnas tipo LONGTEXT"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Área de texto máis grande para LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
"Número máximo de caracteres empregados cando se mostre unha consulta de SQL"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Lonxitude máxima de SQL que se mostra"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Os usuarios non poden estabelecer un valor máis alto"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of databases displayed in database list"
msgid "Maximum number of databases displayed in database list."
msgstr "Número máximo de táboas que se mostran na listaxe de bases de datos"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Bases de datos máximas"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid ""
#| "The number of items that can be displayed on each page of the navigation "
@@ -7101,13 +7124,13 @@ msgstr ""
"O número de elementos que desexa mostrar en cada páxina da árbore de "
"navegación."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum items in branch"
msgid "Maximum items on first level"
msgstr "Número máximo de elementos por galla"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -7115,11 +7138,11 @@ msgstr ""
"O número de elementos que desexa mostrar en cada páxina da árbore de "
"navegación."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Número máximo de elementos por galla"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -7128,21 +7151,21 @@ msgstr ""
"resultados. Se o conxunto de resultados contén máis fileiras, aparecen as "
"ligazóns \"Anterior\" e \"Seguinte\"."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Número máximo de fileiras que se mostran"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table list."
msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Táboas máximas"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
@@ -7154,45 +7177,45 @@ msgstr ""
"O número de bytes que se permite asignar a un script, p.ex. [kbd]32M[/kbd] "
"([kbd]0[/kbd] para non o limitar)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Límite da memoria"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show databases navigation as tree"
msgstr "Mostrar o logotipo no panel de navegación"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show logo in navigation panel."
msgstr "Mostrar o logotipo no panel de navegación"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Mostrar o logotipo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation panel will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "URL ao que apunta o logotipo do panel de navegación"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL da ligazón ao logotipo"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
#, fuzzy
#| msgid ""
#| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
@@ -7204,31 +7227,31 @@ msgstr ""
"Abrir a páxina ligada na xanela principal ([kbd]principal[/kbd]) ou nunha "
"nova ([kbd]nova[/kbd])"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Destino da ligazón do logotipo"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the navigation panel"
msgid "Display server choice at the top of the navigation panel."
msgstr "Mostrar a escolla de servidor na parte superior do panel de navegación"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Mostrar a selección de servidores"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Destino da icona de acceso rápido"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Destino da icona de acceso rápido"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -7236,15 +7259,15 @@ msgstr ""
"Indica o número mínimo de elementos (táboas, vistas, rutinas e "
"acontecementos) para mostrar unha caixa de filtro."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Número mínimo de elementos para mostrar a caixa de filtro"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Número mínimo de bases de datos para mostrar a caixa de filtro"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -7256,90 +7279,146 @@ msgstr ""
"Agrupar os elementos na árbore de navegación (determinado polo separador "
"indicado embaixo)"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Agrupar os elementos na árbore"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
msgstr "Cadea que separa as bases de datos en tres niveis distintos"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Separador da árbore das bases de datos"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
msgstr "Cadea que separa as táboas en tres niveis distintos"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Separador da árbore de táboas"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Profundidade máxima das táboas"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "Realzar o servidor que estea por baixo do cursor do rato"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Activar o realce"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "Barra de navegación das táboas"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Showing tables:"
+msgid "Show tables in tree"
+msgstr "A mostrar as táboas:"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in navigation panel"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Mostrar o logotipo no panel de navegación"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Mostrar as versións"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in navigation panel"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Mostrar o logotipo no panel de navegación"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Mostrar os campos de función"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Mostrar os procesos"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Mostrar as versións"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in navigation panel"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Mostrar o logotipo no panel de navegación"
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "Número máximo de táboas usadas recentemente; 0 para desactivar"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Número máximo de táboas usadas recentemente; 0 para desactivar"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Táboas usadas recentemente"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
#, fuzzy
#| msgid "These are Edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links."
msgstr "Estas son as ligazóns Editar, Copiar e Eliminar"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Onde mostrar as ligazóns das fileiras das táboas"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
@@ -7347,22 +7426,22 @@ msgstr ""
"Empregar a ordenación natural para ordenar os nomes das táboas e as bases de "
"datos"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Ordenación natural"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Empregar só iconas, só texto ou ambos os dous"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Barra de navegación das táboas"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
@@ -7370,11 +7449,11 @@ msgstr ""
"Empregar un buffer para a saída de GZip para atinxir unha maior velocidade "
"nas transferencias mediante HTTP"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Buffer para a saída de GZip"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7386,21 +7465,21 @@ msgstr ""
"[kbd]INTELIXENTE[/kbd] - isto é, orde descendente para os campos do tipo "
"TIME, DATE, DATETIME e TIMESTAMP e ascendente para os demais"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Ordenación por omisión"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Empregar conexións persistentes coas bases de datos MySQL"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Conexións persistentes"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7415,11 +7494,11 @@ msgstr ""
"estrutura da base de datos se non foi posíbel atopar algunha das táboas "
"requiridas para o almacenamento da configuración do phpMyAdmin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if a difference between the "
@@ -7431,11 +7510,11 @@ msgstr ""
"Desactivar o aviso por omisión que aparece se se detecta unha diferenza "
"entre a biblioteca de MySQL e o servidor"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Advertencia de diferenza entre servidor e biblioteca"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7447,29 +7526,29 @@ msgstr ""
"Desactivar o aviso que por omisión se mostra na páxina da estrutura da base "
"de datos se os nomes de columna dunha táboa son palabras reservadas do MySQL"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Advertencia de palabra reservada do MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Como mostrar as lapelas do menú"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Como mostrar diversas ligazóns de acción"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Impedir a edición das columnas BLOB e BINARY"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Protexer as columnas binarias"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7480,21 +7559,21 @@ msgstr ""
"rutinas JS para mostrar o historial de consultas (que se perde cando se "
"fecha a xanela)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Historial de consultas permanente"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Cantas consultas se gardan no historial"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Lonxitude do historial de consultas"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
@@ -7502,31 +7581,31 @@ msgstr ""
"Escolla as funcións que desexe empregar para a conversión dos conxuntos de "
"caracteres"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Motor de recodificación"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Ao navegar polas táboas lémbrase a ordenación de cada unha delas"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Recordar a ordenación da táboa"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Ordenación por omisión"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7536,81 +7615,81 @@ msgstr ""
"Repetir os cabezallos cada X celas; [kbd]0[/kbd] desactiva esta "
"funcionalidade"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Repetir os cabezallos"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Edición da grella: activar acción"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Mostrar columna de relación"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Opcións de exhibición dos servidores"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Edición da grella: gravar todas as celas editadas inmediatamente"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Directorio no que se poden gravar as exportacións no servidor"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Directorio de gardado"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Déixeo en branco se non o vai empregar"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Orde de autenticación do servidor"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Déixeo en branco para o predefinido"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Regras de autorización do servidor"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Permitir rexistrarse sen contrasinal"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Permitir o rexistro de root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Valor da sesión"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
#, fuzzy
#| msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
@@ -7618,11 +7697,11 @@ msgstr ""
"Nome de HTTP Basic Auth Realm que mostrar cando se faga a autenticación "
"mediante HTTP"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "Dominio HTTP (Realm)"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7637,21 +7716,21 @@ msgstr ""
"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "Ficheiro de configuración SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Método de autenticación que se quere empregar"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo de autenticación"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7659,11 +7738,11 @@ msgstr ""
"Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin."
"net/pma/bookmark]bookmark[/a] ; por omisión: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Táboa de marcadores"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7675,36 +7754,36 @@ msgstr ""
"Déixeo en branco se non quere comentarios/tipos mime das columnas; suxírese: "
"[kbd]pma__column_info[/kbd]"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Táboa de información das columnas"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Comprimir a conexión ao servidor de MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Comprimir a conexión"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
#, fuzzy
#| msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a"
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Tipo de conexión"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Contrasinal do usuario de control"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7718,11 +7797,11 @@ msgstr ""
"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Usuario de control"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7734,11 +7813,11 @@ msgstr ""
"Un servidor alternativo que manteña o almacenamento da configuración; déixeo "
"en branco para empregar o servidor xa indicado"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Servidor de control"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
#, fuzzy
#| msgid ""
#| "An alternate port to connect to the host that holds the configuration "
@@ -7753,17 +7832,17 @@ msgstr ""
"da configuración; déixeo en branco para empregar o servidor por omisión, ou "
"o porto xa definido se controlhost for o mesmo que o servidor"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Porto de control"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Agochar as bases de datos que coincidan cunha expresión regular (PCRE)"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7772,15 +7851,15 @@ msgstr ""
"bugs/2606/]Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql."
"com/19588]Erros do MySQL[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desactivar o uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Agochar as bases de datos"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7792,25 +7871,25 @@ msgstr ""
"Déixeo en branco se non quere un histórico das consultas SQL; por omisión: "
"[kbd]pma__history[/kbd]"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Táboa do historial de consultas SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "Nome da máquina na que se executa o servidor de MySQL"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Nome do servidor"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL de desconexión"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7822,17 +7901,17 @@ msgstr ""
"Limita o número de preferencias de táboas que se almacenan na base de datos; "
"os rexistros máis antigos elimínanse automaticamente"
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de preferencias sobre as táboas que almacenar"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Ver a táboa de estado do escravo"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7844,13 +7923,13 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__pdf_pages[/"
"kbd]"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Columnas da área de texto"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7862,17 +7941,17 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Tentar conectarse sen contrasinal"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Conectarse sen contrasinal"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7882,21 +7961,21 @@ msgstr ""
"empregar os caracteres en si, isto é, empregue [kbd]'my\\_db'[/kbd]' no "
"canto de [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Mostrar só as bases de datos listadas"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "Déixeo en branco se non vai empregar config auth"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Contrasinal para config auth"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7907,11 +7986,11 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__pdf_pages[/"
"kbd]"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF schema: táboa de páxinas"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7927,12 +8006,12 @@ msgstr ""
"completa. Déixeo en branco se non lle interesan. Por omisión: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nome da base de datos"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
@@ -7940,11 +8019,11 @@ msgstr ""
"Porto polo que está a escoitar o servidor de MySQL server; déixeo en branco "
"para deixar o predefinido"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Porto do servidor"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7956,11 +8035,11 @@ msgstr ""
"Déixeo en branco para eliminar a «persistencia» das táboas utilizadas "
"recentemente entre sesións; suxírese: [kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Táboa usada recentemente"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7972,13 +8051,13 @@ msgstr ""
"Déixeo en branco para eliminar a «persistencia» das táboas utilizadas "
"recentemente entre sesións; suxírese: [kbd]pma__recent[/kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Variábeis"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7990,11 +8069,11 @@ msgstr ""
"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/"
"relation]ligazóns de relación[/a]; suxírese: [kbd]pma__relation[/kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Táboa de relacións"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -8006,15 +8085,15 @@ msgstr ""
"Vexa os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticación[/a] se quere un exemplo"
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Nome de sesión de rexistro de entrada"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "URL de rexistro de entrada"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
@@ -8022,21 +8101,21 @@ msgstr ""
"Socket polo que está a escoitar o servidor de MySQL; déixeo en branco para "
"deixar o predefinido"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Socket do servidor"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Activar a SSL para a conexión ao servidor de MySQL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Empregar a SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -8048,13 +8127,13 @@ msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: "
"[kbd]pma__table_coords[/kbd]"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF schema: coordenadas de táboa"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -8066,11 +8145,11 @@ msgstr ""
"Táboa para describir a presentación dos campos; déixeo en branco para non o "
"activar; suxírese: [kbd]pma__table_info[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Mostrar a táboa de columnas"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
@@ -8082,11 +8161,11 @@ msgstr ""
"Déixeo en branco se non desexa preferencias «persistentes» da interface das "
"táboas entre sesións; suxírese: [kbd]pma__table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Táboa de preferencias da interface"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -8094,11 +8173,11 @@ msgstr ""
"Se engadir unha instrución DROP DATABASE IF EXISTS como primeira liña do "
"rexistro cando se cree unha base de datos."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Engadir DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -8106,11 +8185,11 @@ msgstr ""
"Se engadir unha instrución DROP TABLE IF EXISTS como primeira liña do "
"rexistro cando se cree unha táboa."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Engadir DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -8118,21 +8197,21 @@ msgstr ""
"Se engadir unha instrución DROP VIEW IF EXISTS como primeira liña do "
"rexistro cando se cree unha vista."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Engadir DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Indica a listaxe de instrucións que emprega a creación automática para as "
"versións novas."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Instrucións que seguir"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -8144,11 +8223,11 @@ msgstr ""
"Déixeo en branco se non quere a funcionalidade de seguimento das consultas "
"de SQL; valor suxerido: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Táboa de seguimento de consultas de SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -8156,11 +8235,11 @@ msgstr ""
"Se o mecanismo de seguimento crea automaticamente versións das táboas e as "
"vistas."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Crear versions automaticamente"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8172,37 +8251,37 @@ msgstr ""
"Déixeo en branco se non quere almacenar as preferencias na base de datos; "
"suxerido: [kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Empregar a táboa de almacenamento das preferencias"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Usar as táboas"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Empregar a táboa Host"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8214,15 +8293,15 @@ msgstr ""
"Déixeo en branco se non quere almacenar as preferencias na base de datos; "
"suxerido: [kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Usuario para config auth"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -8230,11 +8309,11 @@ msgstr ""
"Unha descrición lexíbel deste servidor. Déixea en branco para que no seu "
"canto apareza o nome da máquina."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Nome longo deste servidor"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
@@ -8242,11 +8321,11 @@ msgstr ""
"Se se lle desexa mostrar un botón \"mostrar todos (os rexistros)\" ao "
"usuario"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Permitir que se mostren todas as fileiras"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -8263,15 +8342,15 @@ msgstr ""
"configuración; isto non limita a capacidade de executar a mesma orde "
"directamente"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Mostrar o formulario para mudar de contrasinal"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Mostrar o formulario para crear bases de datos"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -8280,13 +8359,13 @@ msgstr ""
"Mostrar ou agochar unha columna que mostre a marca temporal da creación de "
"todas as táboas"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Comentarios da táboa"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
@@ -8295,11 +8374,11 @@ msgstr ""
"Mostrar ou agochar unha columna que mostre a marca temporal da creación de "
"todas as táboas"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Mostrar marca temporal de creación"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -8309,11 +8388,11 @@ msgstr ""
"Mostrar ou agochar unha columna que mostre a marca temporal da última "
"actualización de todas as táboas"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Mostrar a última actualización da marca temporal"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -8323,11 +8402,11 @@ msgstr ""
"Mostrar ou agochar unha columna que mostre a marca temporal da última "
"comprobación de todas as táboas"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Mostrar a última revisión da marca temporal"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -8339,31 +8418,31 @@ msgstr ""
"Define se os campos tipo deben ser mostrados inicialmente no modo editar/"
"inserir"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Mostrar os tipos de campo"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Mostrar os campos de función no modo editar/inserir"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Mostrar os campos de función"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "Mostrar axudas ou non"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Mostrar consellos"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8375,15 +8454,15 @@ msgstr ""
"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Mostrar a ligazón a phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Mostrar información detallada do servidor de MySQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8391,11 +8470,11 @@ msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Define se se deben mostrar as consultas de SQL xeradas polo phpMyAdmin"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Mostrar as consultas de SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -8405,11 +8484,11 @@ msgstr ""
"Define se a caixa de consultas debe permanecer en pantalla despois da súa "
"execución"
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Reter a caixa de consultas"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -8417,11 +8496,11 @@ msgstr ""
"Permitir que se mostren as estatísticas das bases de datos e das táboas (p."
"ex. o uso do espazo)"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Mostrar as estatísticas"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8431,11 +8510,11 @@ msgstr ""
"Marcar as táboas empregadas e permitir que se mostren as bases de datos con "
"táboas bloqueadas"
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Ignorar as táboas bloqueadas"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -8444,11 +8523,11 @@ msgid ""
msgstr ""
"Na pantalla principal aparece unha advertencia se o Suhosin for detectado."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Aviso de Suhosin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -8461,13 +8540,13 @@ msgstr ""
"Desactivar o aviso que por omisión se mostra na páxina da estrutura da base "
"de datos se os nomes de columna dunha táboa son palabras reservadas do MySQL"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Validez das cookies de rexistro"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -8480,11 +8559,11 @@ msgstr ""
"enfatízase nas áreas de texto das consultas de SQL (*2) e na xanela de "
"consultas (*.1,25)"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Columnas da área de texto"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -8497,39 +8576,39 @@ msgstr ""
"enfatízase nas áreas de texto das consultas de SQL (*2) e na xanela de "
"consultas (*.1,25)"
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Fileiras da área de texto"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "Título da xanela do navegador cando a base de datos estea seleccionada"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "Título da xanela do navegador cando non haxa nada escollido"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Título por omisión"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "Título da xanela do navegador cando un servidor estea seleccionado"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "Título da xanela do navegador cando unha táboa estea seleccionada"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8547,32 +8626,32 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista de proxies de confianza para permiso/denegación de IP"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr ""
"Directorio do servidor ao que se poden enviar os ficheiros que importar"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Directorio de envíos"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "Permitir buscar na base de datos completa"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Empregar buscas na base de datos"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
#, fuzzy
#| msgid ""
#| "When disabled, users cannot set any of the options below, regardless of "
@@ -8584,29 +8663,29 @@ msgstr ""
"Se está desactivado os usuarios non poden establecer ningunha das opcións "
"que hai debaixo, independentemente da caixa da dereita"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Activar a lapela de desenvolvemento na configuración"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Comprobar cal é a última versión"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Enables check for latest version on main phpMyAdmin page"
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Activar a comprobación da última versión na páxina principal do phpMyAdmin"
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Comprobación da versión"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
#, fuzzy
#| msgid ""
#| "The url of the proxy to be used when retrieving the information about the "
@@ -8624,11 +8703,11 @@ msgstr ""
"instalado o phpMyAdmin non ten acceso á Internet. O formato é: "
"«nome_do_servidor:número_do_porto»"
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -8639,23 +8718,23 @@ msgstr ""
"Autenticación Básica. De momento non se admite ningún outro tipo de "
"autenticación."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Nome de usuario"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "O contrasinal para identificarse diante do proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Contrasinal"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8667,61 +8746,61 @@ msgstr ""
"Activar a compresión [a@http://gl.wikipedia.org/wiki/ZIP_(formato de "
"ficheiro)]ZIP[/a] nas operacións de importación e exportación"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
#, fuzzy
#| msgid "Enter your public key for your domain reCaptcha service"
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
"Introduza a súa chave pública para o servizo de reCaptcha do seu dominio"
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Chave pública do reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
#, fuzzy
#| msgid "Enter your private key for your domain reCaptcha service"
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
"Introduza a súa chave privada para o servizo de reCaptcha do seu dominio"
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Chave privada do reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Porto do servidor"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Consultas executadas"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8749,44 +8828,44 @@ msgstr "Autenticación mediante HTTP"
msgid "Signon authentication"
msgstr "Autenticación mediante Signon"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV empregando LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Folla de cálculo de OpenDocument"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Rápido"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Personalizada"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Opcións de exportación da base de datos"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV (para datos de MS Excel)"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Texto de OpenDocument"
@@ -8815,7 +8894,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8884,7 +8963,7 @@ msgstr "Crear unha táboa"
msgid "Number of columns"
msgstr "Número de columnas"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Non foi posíbel cargar os engadidos de exportación. Comprobe a instalación!"
@@ -8928,11 +9007,11 @@ msgstr "Táboa(s):"
msgid "Format:"
msgstr "Formato:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Opcións específicas do formato:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8940,52 +9019,52 @@ msgstr ""
"Baixe para encher as opcións do formato escollido e ignore as opcións do "
"resto dos formatos."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Conversión de codificación:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Fila(s):"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Envorcar algunha(s) fila(s)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Comezar na columna:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Envorcar todas as fileiras"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Saída:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Gardar no servidor no directorio %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Modelo do nome de ficheiro:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@será o nome do servidor"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ será o nome da base de datos"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ será o nome da táboa"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8997,74 +9076,86 @@ msgstr ""
"consecuencia: %3$s. O resto do texto ficará como está. Vexa as %4$sFAQ%5$s "
"para máis detalles."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "usar isto en futuras exportacións"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Conxunto de caracteres do ficheiro:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Compresión:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "comprimido no formato «zip»"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "comprimido no formato «gzip»"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Ver a saída como texto"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views"
+msgid "Export databases as separate files"
+msgstr "Exportar as vistas"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Exportar os cabezallos das táboas"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Gardar a saída nun ficheiro"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Escoller táboas"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Escoller táboas"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "nome da base de datos"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Sen táboas"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "Copiar nome da columna"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9699,7 +9790,7 @@ msgid "Create an index on %s columns"
msgstr "Crear un índice en %s columnas"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Agochar"
@@ -9835,11 +9926,6 @@ msgstr "Desde"
msgid "To"
msgstr "Até"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Enviar"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Engadir un prefixo á táboa:"
@@ -10057,29 +10143,35 @@ msgstr "Produciuse un erro ao cargar a árbore de navegación"
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names: "
+msgid "Groups:"
+msgstr "Nomes das columnas: "
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Acontecementos"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Funcións"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Procedementos"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Táboas"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "Views"
msgid "Views:"
@@ -10109,13 +10201,13 @@ msgstr "Panel de navegación"
msgid "Reload navigation panel"
msgstr "Recargar a moldura de navegación"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, fuzzy, php-format
#| msgid "%s other result found"
#| msgid_plural "%s other results found"
@@ -10124,26 +10216,26 @@ msgid_plural "%s results found"
msgstr[0] "atopouse %s resultado máis"
msgstr[1] "atopáronse outros %s resultados"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "filter databases by name"
msgid "Filter databases by name or regex"
msgstr "filtrar as bases de dato polo nome"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Clear Fast Filter"
msgid "Clear fast filter"
msgstr "Limpar o filtro rápido"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "filter items by name"
msgid "Filter by name or regex"
msgstr "filtrar os elementos polo nome"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -10181,7 +10273,7 @@ msgstr "Nova"
msgid "Database operations"
msgstr "Opcións de exportación da base de datos"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -11423,13 +11515,13 @@ msgstr "Nomes das columnas: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Hai un parámetro non válido para a importación de CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -11439,13 +11531,13 @@ msgstr ""
"columnas están ben escritos, separados por vírgulas e non encerrados entre "
"aspas."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "O formato de entrada de CSV non é válido na liña %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "O número de columnas é incorrecto na entrada do CSV na liña %d."
@@ -11870,61 +11962,61 @@ msgstr "Formata texto como consulta de SQL e realza a sintaxe."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formata texto como consulta de SQL e realza a sintaxe."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Erro: xa existe unha relación."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "Engadiuse unha relación cunha CHAVE EXTERNA"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Erro: non se engadiu a relación."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Erro: As funcionalidades relacionais están desactivadas!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Engadiuse a relación interna"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Erro: non se engadiu a relación."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "Engadiuse unha relación cunha CHAVE EXTERNA"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Erro: non se engadiu a relación."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Erro: non se engadiu a relación."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -12025,22 +12117,28 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Recordar a ordenación da táboa"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Pasos rápidos para configurar as funcionalidades avanzadas:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
#| msgid ""
#| "Create the needed tables with the examples/create_tables.sql."
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "Cree as táboas necesarias con exemplos/create_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Cree un usuario usuario pma e déalle acceso a estas táboas."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -12049,24 +12147,24 @@ msgstr ""
"(config.inc.php) comezando, por exemplo con config.sample."
"inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Entre de novo no phpMyAdmin para cargar o ficheiro de configuración "
"actualizado."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "sen descrición"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -12074,14 +12172,14 @@ msgid ""
"configuration storage there."
msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12874,7 +12972,7 @@ msgstr "Non hai acontecementos que mostrar."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Servidor actual:"
@@ -17859,9 +17957,6 @@ msgstr "concurrent_insert está definido como 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Eliminar os datos de seguimento desta táboa"
-#~ msgid "Show versions"
-#~ msgstr "Mostrar as versións"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -19035,9 +19130,6 @@ msgstr "concurrent_insert está definido como 0"
#~ msgid "Reset"
#~ msgstr "Reiniciar"
-#~ msgid "Show processes"
-#~ msgstr "Mostrar os procesos"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reiniciar"
diff --git a/po/he.po b/po/he.po
index cdfae34391..15f789f3b8 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-10-22 15:46+0200\n"
"Last-Translator: Eyal Visoker
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "הצגת הכול"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "מיקום מקורי"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "בוטל"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "קבצי ייבוא"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "בחירת טבלאות"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "אין מאגרי נתונים"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "שמות עמודה"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "ייצור סיסמא"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "ייצור"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "שינוי סיסמא"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "יום שני"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "הצגת הכול"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "הוספת שדה חדש"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "הראה רשת"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
msgid "Link with main panel"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
msgid "Unlink from main panel"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "טבלאות"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "תצוגה"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
msgid "procedures"
msgstr "תהליכים"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
msgid "events"
msgstr "נשלח"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "פונקציה"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2631,135 +2674,135 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "אין מאגרי נתונים"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "גרסת שרת"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "קוד שרת (ID)"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "תכונות קשר כלליות"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "ראיית טבלאות"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "התעלמות"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "הראה את שאילתה כאן שוב"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "האם אכן ברצונך להפעיל את „%s”?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "שאילתת SQL"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "הערות לטבלה"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "שאילתת SQL"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "הקודם"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2767,96 +2810,96 @@ msgid "Next"
msgstr "הבא"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "סה\"כ"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "בינארי"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "מרץ"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "אפריל"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "מאי"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "יוני"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "יולי"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "אוגוסט"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "אוקטובר"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2864,78 +2907,78 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "דצמבר"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "יום ראשון"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "יום שני"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "יום שלישי"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "יום שישי"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2943,223 +2986,223 @@ msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "שבת"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "יום ראשון"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "יום שני"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "יום שלישי"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "יום רביעי"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "יום חמישי"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "יום שישי"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "שבת"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "ללא"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "בשימוש"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "לשנייה"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "השתמש בשדה טקסט"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid email address"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid URL"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date ( ISO )"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid number"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid credit card number"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter only digits"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter the same value again"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter at least {0} characters"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value between {0} and {1}"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value less than or equal to {0}"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value greater than or equal to {0}"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date or time"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid HEX input"
msgstr "%d הוא לא מספר שורה תקין."
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3230,16 +3273,16 @@ msgstr "לשעה"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -3260,7 +3303,7 @@ msgid "Requery"
msgstr "בשאילתה"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3478,7 +3521,7 @@ msgid "Count:"
msgstr "עמודה"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3686,27 +3729,27 @@ msgstr "הצגת סימנייה"
msgid "Delete bookmark"
msgstr "חיפוש"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "השרת אינו מגיב"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3782,6 +3825,16 @@ msgstr "מילים מופרדות ברווח („ “)."
msgid "Inside tables:"
msgstr "בתוך הטבלאות:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "בחירת הכול"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "ביטול הבחירה הכללית"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "בתוך העמודה:"
@@ -3849,7 +3902,7 @@ msgid "All"
msgstr "הכל"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
@@ -4171,7 +4224,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "שרת"
@@ -4182,34 +4235,13 @@ msgstr "שרת"
msgid "View"
msgstr "תצוגה"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "מבנה"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4306,8 +4338,8 @@ msgstr "הוספת/מחיקת עמודות שדה"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "מאגרי נתונים"
@@ -4428,7 +4460,7 @@ msgid "Recent"
msgstr "איפוס"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4506,16 +4538,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "טבלאות"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -5037,7 +5059,7 @@ msgstr "מירבי: %s%s"
msgid "MySQL said: "
msgstr "MySQL אמר: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "הסברת SQL"
@@ -5054,7 +5076,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "ללא קוד PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "ייצור קוד PHP"
@@ -5171,17 +5193,6 @@ msgstr "שימוש בערך זה"
msgid "Rows"
msgstr "שורות"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "נתונים"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5356,7 +5367,7 @@ msgstr "שרת"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5364,24 +5375,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "אתה צריך לשדרג אל %s %s לפחות."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5625,7 +5636,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6036,7 +6047,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6046,7 +6057,7 @@ msgstr "משפטים"
msgid "Save as file"
msgstr "שמירה כקובץ"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "חבילת הקידוד של הקובץ:"
@@ -6074,17 +6085,17 @@ msgstr "דחיסה"
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "שדות מוקפים ע\"י"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6104,16 +6115,16 @@ msgstr "החלפת NULL ע\"י"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "שורות מסתיימות ע\"י"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6194,7 +6205,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -6214,8 +6225,8 @@ msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)"
msgid "Enclose table and column names with backquotes"
msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6334,16 +6345,16 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
msgid "Customize default options."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6373,7 +6384,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6424,178 +6435,188 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+msgid "Navigation tree"
+msgstr "אפשרויות ייצוא מאגר נתונים"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+msgid "Customize the navigation tree."
+msgstr "אפשרויות ייצוא מאגר נתונים"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
#, fuzzy
msgid "Servers"
msgstr "שרת"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Add new field"
msgid "Main panel"
msgstr "הוספת שדה חדש"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
#, fuzzy
#| msgid "Microsoft Excel 2000"
msgid "Microsoft Office"
msgstr "Microsoft Excel 2000"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "מספר דף:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "תיעוד"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "תיעוד"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Server connection collation"
msgid "Enter server connection parameters."
msgstr "איסוף חיבור שרת"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid "Customize export options"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
msgid "Customize navigation panel"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
msgid "Customize main panel"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "מצב"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
msgid "Customize startup page."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "מאגרי נתונים"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6603,200 +6624,200 @@ msgstr ""
msgid "Table structure"
msgstr "מאגרי נתונים"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "טבלה"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display relational schema"
msgstr "הצגת תרשים PDF"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "גודל דף"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "השתמש בשדה טקסט"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
msgid "Customize text input fields."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
msgid "Customize default options"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Column names"
msgid "Column names in first row"
msgstr "שמות עמודה"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6804,1131 +6825,1187 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
msgid "Maximum items on first level"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
#, fuzzy
msgid "Memory limit"
msgstr "גבולות משאבים"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "הראה רשת"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Show logo in navigation panel."
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "כותרת טבלה"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "ראיית טבלאות"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "הראה רשת"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "הראה רשת"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "הראה רשת"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Connections since last refresh"
+msgid "Show functions in tree"
+msgstr "התחברויות מאז הרענון האחרון"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "ראיית תהליכים"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "הראה רשת"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "הראה רשת"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "ניתוח טבלה"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "שינוי סדר הטבלה לפי"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "כותרת טבלה"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "שינוי שם טבלה אל"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "מפתח ראשי נוסף אל %s"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
msgid "Relational display"
msgstr "תצוגת יחסים"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
#, fuzzy
msgid "Save directory"
msgstr "תיקיית בית של נתונים"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "ערך זמן חיבור (Session)"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "תיעוד"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "נכשל בכניסה לשרת MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "חיבורים"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "כל שרת מארח"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "כל שרת מארח"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "אין מאגרי נתונים"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "בחירת שרת"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "אל תשנה את הסיסמא"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "מאגר נתונים"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "קוד שרת (ID)"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "ניתוח טבלה"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "משתנים"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "תיקון טבלה"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "בחירת שרת"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "%s has been disabled for this MySQL server."
msgid "Enable SSL for connection to MySQL server."
msgstr "%s מובטל על שרת MySQL זה."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "מציג הערות עמודה"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "איחוי טבלה"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "משפטים"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
msgid "Automatically create versions"
msgstr "גרסת שרת"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "שימוש בטבלאות"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "הערות לטבלה"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "ראיית מידע PHP"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
msgid "Show field types"
msgstr "ראיית טבלאות"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "הראה רשת"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "הראה שאילתות שלמות"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "סטטיסטיקת שורה"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ברירת מחדל"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7936,52 +8013,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7989,85 +8066,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "שם משתמש:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "סיסמא"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "קוד שרת (ID)"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -8093,46 +8170,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "תיעוד"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV עבור MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8163,7 +8240,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8243,7 +8320,7 @@ msgstr "יצירת עמוד חדש"
msgid "Number of columns"
msgstr "מספר שדות"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8298,68 +8375,68 @@ msgstr "טבלאות"
msgid "Format:"
msgstr "תבנית"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
msgid "Format-specific options:"
msgstr "לתבנית זאת אין אפשרויות"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "שורות"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "שמירת שרת בתוך תיקיית %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "תבנית שם קובץ"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8367,84 +8444,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "חבילת הקידוד של הקובץ:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "דחיסה"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zipped\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzipped\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "שמירה כקובץ"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "מאוזן (headers מסובבים)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "שמירה כקובץ"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "בחירת טבלאות"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "בחירת טבלאות"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database"
msgid "New database name"
msgstr "מאגר נתונים"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "אין טבלאות"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "שמות עמודה"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9010,7 +9099,7 @@ msgid "Create an index on %s columns"
msgstr "יצירת אינדקס על %s עמודות"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -9155,11 +9244,6 @@ msgstr "יום שישי"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "שליחה"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9381,26 +9465,32 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "שמות עמודה"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
msgid "Events:"
msgstr "נשלח"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "פונקציה"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
msgid "Procedures:"
msgstr "תהליכים"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "טבלאות"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9428,39 +9518,39 @@ msgstr "אפשרויות ייצוא מאגר נתונים"
msgid "Reload navigation panel"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "שינוי סדר הטבלה לפי"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "שמירה כקובץ"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "שינוי סדר הטבלה לפי"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9498,7 +9588,7 @@ msgstr ""
msgid "Database operations"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10769,26 +10859,26 @@ msgstr "שמות עמודה"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11132,60 +11222,60 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "שינויים נשמרו"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "לא ניתן לקרוא את הקובץ"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
msgid "Internal relation has been added."
msgstr "יחסים פנימיים"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "לא ניתן לקרוא את הקובץ"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "שינויים נשמרו"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "לא ניתן לקרוא את הקובץ"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "לא ניתן לקרוא את הקובץ"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
msgid "Internal relation has been removed."
msgstr "יחסים פנימיים"
@@ -11282,54 +11372,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "שינוי שם טבלה אל"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "ללא תיאור"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12126,7 +12222,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17211,9 +17307,6 @@ msgstr ""
#~ msgid "Server traffic (in KiB)"
#~ msgstr "תעבורת השרת (ב־KiB)"
-#~ msgid "Connections since last refresh"
-#~ msgstr "התחברויות מאז הרענון האחרון"
-
#~ msgid "Questions since last refresh"
#~ msgstr "שאלות מאז הרענון האחרון"
@@ -17422,9 +17515,6 @@ msgstr ""
#~ msgid "Reset"
#~ msgstr "איפוס"
-#~ msgid "Show processes"
-#~ msgstr "ראיית תהליכים"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "איפוס"
diff --git a/po/hi.po b/po/hi.po
index 8764310980..62933cac84 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-02-04 18:16+0200\n"
"Last-Translator: Nisarg Jhaveri
to toggle column's visibility"
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "कॉलम को दिखने / छुपाने के लिए
ड्रॉप-डाउन तीर पर क्लिक करें"
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "सभी दिखाएँ"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2447,167 +2490,167 @@ msgstr ""
"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड "
"सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।"
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "मूल स्थिति"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "रद्द"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "रद्द"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "आयात"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "टेबल चुनिये"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
msgstr "लिंक पर जाएँ"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "कोलम के नाम"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "नया पासवर्ड उत्पन्न करें"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "उत्पन्न करें"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "पासवर्ड बदलें"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "अधिक"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "सभी दिखाएँ"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add index"
msgid "Hide Panel"
msgstr "अनुक्रमणिका जोड़"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show hidden navigation tree items."
msgstr "बाईं फ्रेम में लोगो देखियें"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main frame"
msgid "Link with main panel"
msgstr "मुख्य फ्रेम को अनुकूलित करें"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main frame"
msgid "Unlink from main panel"
msgstr "मुख्य फ्रेम को अनुकूलित करें"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "टेबल"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "दृश्य"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "प्रक्रियाओं"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "घटना"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Connections"
msgid "functions"
msgstr "कनेक्शन"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2616,282 +2659,282 @@ msgstr ""
"phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित हुआ है।"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr "नवीनतम स्थिर संस्करण:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "अद्यतन"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "दृश्य बनाइये"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
#| msgid "Server port"
msgid "Send Error Report"
msgstr "सर्वर"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "सेटिंग्स बदलें"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Show open tables"
msgid "Show Report Details"
msgstr "खुला टेबल शो"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "उपेक्षा करें"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "यह query वापस यहीं दिखायें"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?"
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "टेबल की टिप्पणी"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "खोज परिणाम छिपाएँ"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "पिछला"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "अगला"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "आज"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "जनवरी"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "फरवरी"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "मार्च"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "अप्रैल"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "मई"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "जून"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "जुलाई"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "अगस्त"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "सितम्बर"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "अक्तूबर"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "नवम्बर"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "दिसमबर"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "रविवार"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "सोमवार"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "मंगलवार"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "बुधवार"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "गुरूवार"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "शुक्रवार"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "शनिवार"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2899,203 +2942,203 @@ msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "मंगलवार"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "शनिवार"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "रवि"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "सोम"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "मंगल"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "बुध"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "गुरु"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "शुक्र"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "शनि"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "सप्ताह"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "कैलेण्डर-माह-वर्ष"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "कुछ नहीं"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "घंटा"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "मिनट"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "सेकण्ड"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Text fields"
msgid "Please fix this field"
msgstr "पाठ फ़ील्ड"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "वैध पोर्ट नहीं एक"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3167,16 +3210,16 @@ msgstr "प्रति घंटा"
msgid "per day"
msgstr "प्रतिदिन"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "फ़ॉन्ट का आकार"
@@ -3197,7 +3240,7 @@ msgid "Requery"
msgstr "उप-क्वरी"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3419,7 +3462,7 @@ msgid "Count:"
msgstr "स्तम्भ"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3628,27 +3671,27 @@ msgstr "बुकमार्क प्रदर्शित किया जा
msgid "Delete bookmark"
msgstr "संबंध हटाना"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "सर्वर जवाब नहीं दे रहा"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "विवरण…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3724,6 +3767,16 @@ msgstr "शब्द स्पेस(\" \") करक्टेर से अल
msgid "Inside tables:"
msgstr "टेबल में:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "सभी का चयन करें"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "सभी को रद्द करें"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "काँलम के अंदर:"
@@ -3793,7 +3846,7 @@ msgid "All"
msgstr "सभी"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "पंक्तियोंकी की संख्या:"
@@ -4112,7 +4165,7 @@ msgid ""
msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "सर्वर"
@@ -4123,34 +4176,13 @@ msgstr "सर्वर"
msgid "View"
msgstr "दृश्य"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "संरचना"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4247,8 +4279,8 @@ msgstr "पाठ क्षेत्रपाठ क्षेत्र कोल
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "डाटाबेस"
@@ -4369,7 +4401,7 @@ msgid "Recent"
msgstr "रीसेट"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4447,16 +4479,6 @@ msgstr "जोड़"
msgid "Sorting"
msgstr "छँटाई"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "टेबल"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "लेन - देन समन्वयक"
@@ -4986,7 +5008,7 @@ msgstr "अधिकतम: %s%s"
msgid "MySQL said: "
msgstr "MySQL ने कहा: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL की व्याख्या"
@@ -5003,7 +5025,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "php कोड के बिना"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP Code बनाओ"
@@ -5124,17 +5146,6 @@ msgstr "इस मान का उपयोग करें"
msgid "Rows"
msgstr "रो"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "डाटा"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5310,7 +5321,7 @@ msgstr "सर्वर"
msgid "Invalid authentication method set in configuration:"
msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5318,24 +5329,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए।"
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5582,7 +5593,7 @@ msgid "Set value: %s"
msgstr "मान निर्धारित: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "मूलभूत मान को बहाल"
@@ -6055,7 +6066,7 @@ msgstr "एक स्क्रिप्ट को चलने की अवध
msgid "Maximum execution time"
msgstr "अधिकतम निष्पादन समय"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add constraints"
msgid "Use %s statement"
@@ -6065,7 +6076,7 @@ msgstr "शर्तें जोडें"
msgid "Save as file"
msgstr "फ़ाइल के रूप में सहेजें"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "फ़ाइल का चरित्र सेट"
@@ -6092,17 +6103,17 @@ msgstr "संक्षिप्तीकरण"
msgid "Put columns names in the first row"
msgstr "काँलम नाम प्रथम रो में"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Column names"
msgid "Columns enclosed with"
msgstr "कोलम के नाम"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Column names"
msgid "Columns escaped with"
@@ -6122,16 +6133,16 @@ msgstr "शून्य की जगह पर"
msgid "Remove CRLF characters within columns"
msgstr "CRLF चरित्र को कोलम से हटायें"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "काँलम समाप्त होता है"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6203,7 +6214,7 @@ msgid "Save on server"
msgstr "सर्वर पर सेव करें"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "मौजूदा फ़ाइल अधिलेखित करें"
@@ -6220,8 +6231,8 @@ msgstr "AUTO_INCREMENT मूल्य जोडें"
msgid "Enclose table and column names with backquotes"
msgstr "टेबल और फील्ड के नाम को backquotes से बंद करें"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL संगतता मोड"
@@ -6354,17 +6365,17 @@ msgid "Customize browse mode."
msgstr "ब्राउज़ मोड अनुकूलित"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "डिफ़ॉल्ट विकल्प अनुकूलित"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6398,7 +6409,7 @@ msgstr "निर्यात डिफ़ॉल्ट"
msgid "Customize default export options."
msgstr "डिफ़ॉल्ट निर्यात विकल्पों को अनुकूलित करें"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "विशेषताएँ"
@@ -6455,48 +6466,60 @@ msgstr "नेविगेशन फ्रेम"
msgid "Customize appearance of the navigation panel."
msgstr "नेविगेशन फ्रेम की दिखावट को अनुकूलित करें"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation frame"
+msgid "Navigation tree"
+msgstr "नेविगेशन फ्रेम"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation frame"
+msgid "Customize the navigation tree."
+msgstr "नेविगेशन फ्रेम को अनुकूलित करें"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "सर्वर"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "सर्वर प्रदर्शन विकल्प"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "टेबल प्रदर्शन विकल्प"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "मुख्य फ्रेम"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "माइक्रोसॉफ्ट ऑफिस"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "अन्य मुख्य सेटिंग्स"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "सेटिंग्स जो कहीं भी फिट नहीं थी"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "पृष्ठ शीर्षक"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6509,11 +6532,11 @@ msgstr ""
"निर्दिष्ट ब्राउज़र की शीर्षक पट्टी पाठ. [doc@cfg_TitleTable]documentation[/doc] "
"जादू स्ट्रिंग को विशेष मान पाने के लिए इस्तेमाल किया जा सकता है."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "सुरक्षा"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6524,25 +6547,25 @@ msgid ""
msgstr ""
"कृपया याद रखें phpMyAdmin एक अंतरफलक है और इसकी विशेषताओं MySQL को सीमित नहीं करती"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "मूल सेटिंग्स"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "प्रमाणीकरण"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "प्रमाणीकरण सेटिंग्स"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "सर्वर विन्यास"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6552,17 +6575,17 @@ msgid ""
"what they are for."
msgstr "उन्नत सर्वर विन्यास,अगर आप इनके बारे मैं नहीं जानते तो इन्हें मत बदलें"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "सर्वर कनेक्शन पैरामीटर दाखिल करें"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "विन्यास भंडारण"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
@@ -6576,80 +6599,80 @@ msgstr ""
"phpMyAdmin विन्यास भंडारण अतिरिक्त सुविधाओं तक पहुँच हासिल करने के लिए कॉन्फ़िगर करें, "
"ज्यादा जानकारी के लिए [doc@linked-tables]phpMyAdmin configuration storage[/doc]"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "परिवर्तन ट्रैकिंग"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
"डेटाबेस ट्रैकिंग में किए गए परिवर्तन. phpMyAdmin विन्यास भंडारण की आवश्यकता होती है."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "निर्यात विकल्पों को अनुकूलित करें"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "आयात विकल्पों को अनुकूलित करें"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
msgstr "नेविगेशन फ्रेम को अनुकूलित करें"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "मुख्य फ्रेम को अनुकूलित करें"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL क्वरी"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL क्वरी बॉक्स"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "SQL क्वरी बॉक्स में दिखाए गए लिंक्स को अनुकूलित करें"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "SQL क्वेरी सेटिंग्स"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "स्टार्टअप"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "स्टार्टअप पेज अनुकूलित करें"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database for user"
msgid "Database structure"
msgstr "यूसर के लिए डेटाबेस"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6657,61 +6680,61 @@ msgstr ""
msgid "Table structure"
msgstr "यूसर के लिए डेटाबेस"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "टैब्स"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "चुनें कि आप टैब्स काम करना चाहते हैं"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display relational schema"
msgstr "PDF स्कीमा दिखाओ"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "पेपर आकार"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "पाठ फ़ील्ड"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "टेक्स्ट फ़ील्ड जानकारी को अनुकूलित करें"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! टेक्स्ट"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "डिफ़ॉल्ट विकल्प अनुकूलित"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "चेतावनी"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "phpMyAdmin द्वारा दिखाए चेतावनी निष्क्रिय करें"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6723,15 +6746,15 @@ msgstr ""
"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a]"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "iconv के लिए अतिरिक्त पैरामीटर"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6742,11 +6765,11 @@ msgid ""
msgstr ""
"अगर सक्रिय है, phpMyAdmin एकाधिक बयान प्रश्नों कंप्यूटिंग जारी भले ही एक प्रश्न का असफल"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "कई बयान त्रुटियों उपेक्षा"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6755,25 +6778,25 @@ msgstr ""
"मामले लिपि में आयात की अनुमति दें अंतरायन का पता लगाता है यह समय सीमा के करीब है. यह "
"अच्छा करने के लिए बड़ी फ़ाइलों आयात तरीका हो, लेकिन यह लेनदेन तोड़ सकते हो सकता है."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "आंशिक आयात दखल की अनुमति"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "इन्सर्ट त्रुटी मैं मत छोड़ों"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6785,62 +6808,62 @@ msgstr ""
"डिफ़ॉल्ट स्वरूप; पता होना चाहिए कि इस सूची में स्थान (डेटाबेस, तालिका) पर निर्भर करता है "
"और केवल SQL हमेशा उपलब्ध है"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "आयात की गई फ़ाइल का प्रारूप"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "कीवर्ड LOCAL का प्रयोग"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "कोलम के नाम पहली रो में"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "खाली रोयाँ आयात नहीं"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "आयात मुद्राओं ($5.00 से 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "प्रतिशत को उचित दशमलव के रूप में आयात करें"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "प्रश्नों की संख्या शुरू से ही छोड़ने के लिए"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "आंशिक आयात: क्वरीों को छोड़"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का प्रयोग न करें"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "स्लाइडर्स के लिए प्रारंभिक अवस्था"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "एक समय पर कितनी पक्न्तियों को डाला जा सकता है"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "डाली गयी पक्न्तियों"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
#, fuzzy
#| msgid ""
#| "Maximum number of characters shown in any non-numeric column on browse "
@@ -6850,11 +6873,11 @@ msgid ""
msgstr ""
"किसी भी गैर सांख्यिक स्तंभ में दिखाया गया है अक्षरों की अधिकतम संख्या पर विचार ब्राउज़"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "काँलम वर्ण सीमा"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6863,11 +6886,11 @@ msgstr ""
"अगर TRUE, लोगौत सभी सर्वर की कुकी हटा देगा| अगर FALSE, लोगौत सिर्फ वर्तमान सर्वर से "
"होगा| इसे FALSE रखने से सर्वर लोगौत भूल सकते हैं, जब आप ज्यादा सर्वर से कनेक्ट हों।"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "लॉगआउट पर सभी कुकीज़ हटाना"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6878,11 +6901,11 @@ msgid ""
msgstr ""
"परिभाषित करें कि पिछले लॉगइन या याद किया जाना चाहिए कुकी प्रमाणीकरण मोड में या नहीं"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "याद यूसर नाम"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6893,78 +6916,78 @@ msgstr ""
"चाहिए. 0 मतलब का मूलभूत है कि यह केवल मौजूदा सत्र के लिए रखा जाएगा, और जैसे ही आप "
"ब्राउज़र विंडो को बंद हटा दिया जाएगा. इस गैर विश्वसनीय वातावरण के लिए सिफारिश की है."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "लॉगिन कुकी भंडार"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "परिभाषित करें की एक लोगिन कुकी कितने समय थक मान्य है"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "लॉगिन कुकी वैधता"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "LONGTEXT काँलम के लिए textarea का आकर दुगना करें"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEST के लिए बड़ा आकर"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "SQL प्रदर्शित अधिकतम अक्षर"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "SQL प्रदर्शित अधिकतम लम्बाई"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "यूसरओं एक उच्च मूल्य निर्धारित नहीं कर सकते"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of databases displayed in database list."
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "डेटाबेस की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum items on first level"
msgstr "अस्थायी सोर्ट फ़ाइलों के लिए अधिकतम आकार"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6972,21 +6995,21 @@ msgstr ""
"परिणाम सेट में से प्रदर्शित रों की संख्या, अगर सेट में ज्यादा रो हैं तो \"पिछले\" और \"अगला"
"\" लिंक दिखाएँ जायेंगे।"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "प्रदर्शित रो की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table list."
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "अधिकतम सारणी"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
@@ -6997,75 +7020,75 @@ msgid ""
msgstr ""
"एक लिपि को कितने बाइट्स दिए जायेंगे, eg. [kbd]32M[/kbd], [kbd]0[/kbd] मतलब असीमित"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "स्मृति सीमा"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show databases navigation as tree"
msgstr "बाईं फ्रेम में लोगो देखियें"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "बाईं फ्रेम में लोगो देखियें"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "लोगो प्रदर्शन करें"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "नेविगेशन फ्रेम में URL यहाँ इंगित"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "लोगो लिंक URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "लोगो लिंक लक्ष्य"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel."
msgstr "बाएं फ्रेम के शीर्ष पर सर्वर विकल्प"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "सर्वर चयन प्रदशित करें"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "त्वरित पहुँच आइकन के लिए लक्ष्य"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "त्वरित पहुँच आइकन के लिए लक्ष्य"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid ""
@@ -7073,19 +7096,19 @@ msgid ""
"display a filter box."
msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of items to display the filter box"
msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Only light version; display databases in a tree (determined by the "
@@ -7096,145 +7119,199 @@ msgid ""
msgstr ""
"केवल प्रकाश संस्करण, एक पेड़ में प्रदर्शित डेटाबेस (नीचे परिभाषित विभाजक द्वारा निर्धारित)"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
msgstr "स्ट्रिंग जो डेटाबेस को अलग स्तरों में बांटती है"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "डेटाबेस स्तर अलगानेवाला"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
msgstr "स्ट्रिंग जो टेबल को अलग स्तरों में बांटती है"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "टेबल स्तर अलगानेवाला"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "अधिकतम टेबल स्तर गहराई"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "कर्सर के तहत सर्वर पर प्रकाश डाला"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "उजागर सक्षम"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Enable navigation tree expansion"
msgstr "प्रतिष्ठित नेविगेशन पट्टी"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "टेबल दिखाओ"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "बाईं फ्रेम में लोगो देखियें"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "संस्करण दिखाएँ"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "बाईं फ्रेम में लोगो देखियें"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "प्रोसेस दिखाओ"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "संस्करण दिखाएँ"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "बाईं फ्रेम में लोगो देखियें"
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "लापता टेबलएं"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
#, fuzzy
#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links."
msgstr "ये हैं संपादित करें, इनलाइन संपादन, प्रतिलिपि बनाएँ और हटाएँ लिंक"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
msgstr "टेबल और डेटाबेस नाम सॉर्ट करने के लिए प्राकृतिक व्यवस्था का उपयोग"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "प्राकृतिक आदेश"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "उपयोग चिह्न, पाठ या दोनों"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "प्रतिष्ठित नेविगेशन पट्टी"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "तेज HTTPट्रान्सफर के लिए GZip आउटपुट बफरिंग का उपयोग करें"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip आउटपुट बफरिंग"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "डिफ़ॉल्ट सॉर्ट क्रम"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL के लिए लगातार कनेक्शन का उपयोग"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "के लिए"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7248,11 +7325,11 @@ msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7262,11 +7339,11 @@ msgid ""
"MySQL library and server is detected."
msgstr "अगर mcrypt कुकी प्रमाणीकरण अक्षम है डिफ़ॉल्ट चेतावनी रदर्शित होता अक्षम है"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7279,82 +7356,82 @@ msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "सभी रोयों को प्रदर्शित करने की अनुमति"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB और BINARY काँलम को एडिट नहीं किया जा सकता"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "बाइनरी काँलम की रक्षा"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "स्थायी क्वरी इतिहास"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "इतिहास में कितने क्वरी रखने है"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "क्वरी इतिहास लंबाई"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
msgstr "चरित्र रूपांतरण के लिए functions चुने"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "टेबल का नाम बदलें"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "डिफ़ॉल्ट सॉर्ट क्रम"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7362,110 +7439,110 @@ msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "हर सेल्स बाद हेडर दोहराना, [kbd]0[/kbd] इस सुविधा को निष्क्रिय करें"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "हेडर दोहराना"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "संबंधपरक प्रदर्शन स्तंभ"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "सर्वर प्रदर्शन विकल्प"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "निर्देशिका जहां निर्यात सर्वर पर सहेजा जा सकता है"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "निर्देशिका बचाना"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "इस्तेमाल नहीं तो खाली छोड़ें"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "होस्ट प्राधिकरण आदेश"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "डिफ़ॉल्ट के लिए खाली छोड़ें"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "होस्ट प्राधिकरण नियम"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "पासवर्ड के बिना प्रवेश की अनुमति"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "रूट लॉगिन की अनुमति"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "सत्र मूल्य"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "http दायरे"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey config फाइल"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "प्रमाणीकरण विधि उपयोग करने के लिए"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "प्रमाणीकरण पद्धति का उपयोग"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7476,11 +7553,11 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "बुकमार्क टेबल"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
@@ -7491,35 +7568,35 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "काँलम जानकारी टेबल"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL सर्वर कनेक्शन संक्षिप्त करना"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "कनेक्शन संक्षिप्त करना"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
#, fuzzy
#| msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "सर्वर से कैसे कनेक्ट करें, [kbd]tcp[/kbd] रखें अगर अनिश्चित"
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "कनेक्शन के प्रकार"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "यूसर पासवर्ड नियंत्रण"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7532,54 +7609,54 @@ msgstr ""
"एक विशेष MySQL सर्वर सीमित अनुमति के साथ, ज्यादा जानकारी के लिए [a@http://wiki."
"phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA का उपयोग असमर्थ करें"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "डेटाबेस छिपाना"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7591,41 +7668,41 @@ msgstr ""
"अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL इतिहास क्वेरी टेबल"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "होस्ट नाम जहाँ MySQL सर्वर चल रहा है"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "सर्वर होस्ट नाम"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "लॉगआउट URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7635,13 +7712,13 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7651,38 +7728,38 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "पासवर्ड के बिना कनेक्ट करने का प्रयास"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "पासवर्ड के बिना कनेक्ट करें"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "केवल सूचीबद्ध डेटाबेस दिखाएँ"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "अगर विन्यास प्राधिकरण का उपयोग नहीं तो खाली छोड़ दें"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "विन्यास प्राधिकरण के लिए पासवर्ड"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7691,33 +7768,33 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF स्कीमा: पृष्ठों टेबल"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "डेटाबेस नाम"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "MySQL सर्वर किस port पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "सर्वर"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7727,13 +7804,13 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "याद यूसर नाम"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7743,13 +7820,13 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "प्रक्रियां"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7759,45 +7836,45 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "संबंध टेबल"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "signon सत्र नाम"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "MySQL किस गर्तिका पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "सर्वर गर्तिका"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL कनेक्शन के लिए SSL सक्षम करने"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "SSL का उपयोग"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7807,11 +7884,11 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7821,11 +7898,11 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "काँलम टेबल दिखाएँ"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
@@ -7834,33 +7911,33 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "User preferences storage table"
msgid "UI preferences table"
msgstr "यूसर वरीयताओं की भंडारण टेबल"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "ड्रॉप डेटाबेस जोड़ें"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "ड्रॉप टेबल जोड़ें"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7868,19 +7945,19 @@ msgstr ""
"क्या DROP VIEW IF EXISTS बयान पहली लाइन की तरह जोड़े जायेगा, जब एक दृश्य का लोग बन "
"रहा है।"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "DROP VIEW जोडें"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "बयान ट्रैक करने के लिए"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7892,21 +7969,21 @@ msgstr ""
"अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL क्वरी ट्रैकिंग टेबल"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "स्वतः संस्करण बनाना"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7916,37 +7993,37 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "यूसर वरीयताओं की भंडारण टेबल"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "टेबल का उपयोग करो"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "होस्ट टेबल का उपयोग करें"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7956,132 +8033,132 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "विन्यास प्राधिकरण के लिए यूसर"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "इस सर्वर का विवरण, होस्ट नाम दिखने के लिए खाली छोडें।"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "इस सर्वर का वाचाल नाम"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "क्या एक उसेर को \"show all (rows)\" बटन दिखाना है"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "सभी रोयों को प्रदर्शित करने की अनुमति"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "पासवर्ड बदलने के फार्म"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "डेटाबेस बनाने का फार्म"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "टेबल की टिप्पणी"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "अधिक क्रियाएँ दिखाओ"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "मास्टर अवस्था"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "फ़ील्ड प्रकार दिखाएँ"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "ग्रिड दिखाओ"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "phpinfo() लिंक दिखाएँ"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "विस्तृत mysql सर्वर जानकारी"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8089,41 +8166,41 @@ msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "क्या phpMyAdmin द्वारा उत्पन SQL प्रशन प्रदर्शित करनी है"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "SQL प्रशन दिखाएँ"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "क्वरी बॉक्स छुपा"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "डेटाबेस और टेबल आँकड़े प्रदर्शित करने की अनुमति दें"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "आँकड़े दिखाएँ"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "बंद टेबलओं को छोड़"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8131,11 +8208,11 @@ msgid ""
"detected."
msgstr "अगर Suhosin का पता चलता है तो चेतावनी दी जाएगी"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin चेतावनी"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8149,61 +8226,61 @@ msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "लॉगिन कुकी वैधता"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "क्षेत्र रोयाँ"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "ब्राउज़र विंडो का शीर्षक है जब एक डेटाबेस का चयन किया"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी डेटाबेस का चयन नहीं किया है"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "डिफ़ॉल्ट शीर्षक"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "ब्राउज़र विंडो का शीर्षक है जब एक सर्वर का चयन किया"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8211,58 +8288,58 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "विश्वसनीय proxies की सूची IP अनुमति / इनकार के लिए"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr "सर्वर पर निर्देशिका जहाँ आप आयात करने के लिए फाइल अपलोड कर सकते हैं"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "अपलोड निर्देशिका"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "संपूर्ण डेटाबेस के अंदर तलाश करने के लिए अनुमति"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "डेटाबेस खोज का प्रयोग"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "नवीनतम संस्करण के लिए जाँच"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Enables check for latest version on main phpMyAdmin page"
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "phpMyAdmin के मुख्य पृष्ठ पर नवीनतम संस्करण के लिए जाँच की अनुमति"
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "संस्करण की जांच"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8270,34 +8347,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "यूसर नाम"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "पासवर्ड"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -8309,53 +8386,53 @@ msgstr ""
"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a]"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "सर्वर"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8383,46 +8460,46 @@ msgstr "HTTP प्रमाणीकरण"
msgid "Signon authentication"
msgstr "signon प्रमाणीकरण"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Spreadsheet"
msgstr "दस्तावेज़ खोलें"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "तुरंत"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "कस्टम"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "डेटाबेस निर्यात विकल्प"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV for MX Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document"
msgid "OpenDocument Text"
@@ -8453,7 +8530,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8528,7 +8605,7 @@ msgstr "टेबल बनायें"
msgid "Number of columns"
msgstr "काँलम की संख्या"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "निर्यात plugins लोड नहीं कर सका, अपने अधिष्ठापन को जांचें!"
@@ -8571,62 +8648,62 @@ msgstr "टेबल(s) :"
msgid "Format:"
msgstr "प्रारूप:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "प्रारूप निर्दिष्ट विकल्प:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "एन्कोडिंग रूपांतरण:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "पंक्तियाँ:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "कुछ रो डंप"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "पंक्ति पर शुरू करने के लिए:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "सभी रोयों को डंप"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "उत्पादन:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "सर्वर पर %sनिर्देशिका में सहेजते"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "फ़ाइल नाम टेम्पलेट:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@सर्वर@ सर्वर का नाम बन जायेगा"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @डेटाबेस@ डेटाबेस का नाम बन जायेगा"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @टेबल@ टेबल का नाम बन जायेगा"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8634,74 +8711,86 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "भविष्य के निर्यात के लिए इस का उपयोग करें"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "फ़ाइल का चरित्र सेट:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "संपीड़न:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "फ़ाइल के रूप में उत्पादन देख"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Exporting rows from \"%s\" table"
+msgid "Export databases as separate files"
+msgstr "\"%s\" डेटाबेस से रो निर्यात"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export as %s"
+msgid "Export tables as separate files"
+msgstr "%s के रूप में निर्यात"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "उत्पादन को फाईल मे सेव करें"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "टेबल चुनिये"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "टेबल चुनिये"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "डेटाबेस नाम"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "User name"
msgid "New table name"
msgstr "नया पेज के नाम"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "कोलम के नाम"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9280,7 +9369,7 @@ msgid "Create an index on %s columns"
msgstr " %s कोलम पर इन्डेक्स बनाऐं"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "छिपाना"
@@ -9424,11 +9513,6 @@ msgstr "शुक्रवार"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "सबमिट"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add index"
@@ -9650,29 +9734,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "कोलम नाम"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Event"
msgid "Events:"
msgstr "घटना"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Connections"
msgid "Functions:"
msgstr "कनेक्शन"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "प्रक्रियाओं"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "टेबल"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9702,39 +9792,39 @@ msgstr "नेविगेशन फ्रेम"
msgid "Reload navigation panel"
msgstr "नेविगेशन फ्रेम पुनः लोड"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "टेबल क्रमांक को बदलिये "
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "फ़ाइल के रूप में सहेजें"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "टेबल क्रमांक को बदलिये "
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9772,7 +9862,7 @@ msgstr ""
msgid "Database operations"
msgstr "डेटाबेस निर्यात विकल्प"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -11036,26 +11126,26 @@ msgstr "कोलम नाम"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV आयात के लिए अमान्य पैरामीटर: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV प्रारूप का अवैध इनपुट लाइन %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV इनपुट में अवैध काँलम गिनती लाइन %d."
@@ -11403,63 +11493,63 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "विदेशी कुंजी रिश्ता जोड़ा."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "आंतरिक संबंध जोड़ा."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "विदेशी कुंजी रिश्ता जोड़ा."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11560,41 +11650,47 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "टेबल का नाम बदलें"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "सेटअप करने के लिए त्वरित कदम उन्नत सुविधाओं"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "कोई विवरण नहीं"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11602,14 +11698,14 @@ msgid ""
"configuration storage there."
msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12446,7 +12542,7 @@ msgstr "अपलोड करने के लिए फाइल उपलब
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current Server"
msgid "Current Server:"
@@ -17259,9 +17355,6 @@ msgstr "concurrent_insert 0 पर सेट है"
#~ msgid "Delete tracking data for this table"
#~ msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ"
-#~ msgid "Show versions"
-#~ msgstr "संस्करण दिखाएँ"
-
#, fuzzy
#~| msgid "Database for user"
#~ msgid "Table Structure"
@@ -18269,9 +18362,6 @@ msgstr "concurrent_insert 0 पर सेट है"
#~ msgid "JSON encoder is needed for chart tooltips."
#~ msgstr "JSON encoder चार्ट के लिए आवश्यक है"
-#~ msgid "Show processes"
-#~ msgstr "प्रोसेस दिखाओ"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "रीसेट"
diff --git a/po/hr.po b/po/hr.po
index b6649b6876..187d1c5b9d 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-28 11:02+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Prikaži sve"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Izvorni položaj"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Odustani"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Prekinuto"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Uvezi datoteke"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "Najveća veličina datoteke zapisnika"
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Odaberite tablice"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Nema baza podataka"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Nazivi stupaca"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generiraj lozinku"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generiraj"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promijeni lozinku"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Prikaži sve"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Indexes"
msgid "Hide Panel"
msgstr "Indeksi"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show hidden navigation tree items."
msgstr "Prikaži logo u lijevom okviru"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main frame"
msgid "Link with main panel"
msgstr "Postavi glavni okvir"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main frame"
msgid "Unlink from main panel"
msgstr "Postavi glavni okvir"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tablice"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Prikaz"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Postupci"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "Događaj"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Funkcije"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Odabrani korisnik nije pronađen u tablici privilegija."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2713,137 +2756,137 @@ msgstr ""
"Najnovija verzija je %s objavljena na %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
#, fuzzy
msgid ", latest stable version:"
msgstr "Izradi relaciju"
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Nema baza podataka"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Izradi relaciju"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "ID poslužitelja"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Opće osobine relacija"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Show open tables"
msgid "Show Report Details"
msgstr "Prikaži otvorene tablice"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignoriraj"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Ovaj upit ponovno prikaži ovdje"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Želite li zaista "
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL upit"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Komentari tablice"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "SQL upit"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodni"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2851,96 +2894,96 @@ msgid "Next"
msgstr "Sljedeće"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarno"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Veljača"
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Ožu"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Tra"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Svi"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Lip"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Srp"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Kol"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Rujan"
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Lis"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Studeno"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Prosinac"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2948,78 +2991,78 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Pro"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Srijeda"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "ČEtvrtak"
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Subota"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -3027,86 +3070,86 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
@@ -3115,137 +3158,137 @@ msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "bez kompresije"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Sat"
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "u upotrebi"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "po sekundi"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Upotrijebi tekstualno polje"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "Netočan broj porta"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "Netočan broj porta"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "Netočan broj porta"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "Netočan broj porta"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "Netočan broj porta"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "Netočan broj porta"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "Netočan broj porta"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "Netočan broj porta"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "Netočan broj porta"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "Netočan broj porta"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "Netočan broj porta"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Netočan broj porta"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "Netočan broj porta"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "Netočan broj porta"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3317,16 +3360,16 @@ msgstr "po satu"
msgid "per day"
msgstr "po danu"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Veličina fonta"
@@ -3347,7 +3390,7 @@ msgid "Requery"
msgstr "unutar upita"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3568,7 +3611,7 @@ msgid "Count:"
msgstr "Stupac"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3778,7 +3821,7 @@ msgstr "Prikazivanje oznake"
msgid "Delete bookmark"
msgstr "Izbriši relaciju"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3787,21 +3830,21 @@ msgid ""
msgstr ""
"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Poslužitelj ne odgovara"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detalji…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
@@ -3879,6 +3922,16 @@ msgstr "Riječi su razdvojene znakom razmaka (\" \")."
msgid "Inside tables:"
msgstr "Unutar tablica:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Odaberi sve"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Ukloni sav odabir"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Unutar polja:"
@@ -3946,7 +3999,7 @@ msgid "All"
msgstr "Sve"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
@@ -4279,7 +4332,7 @@ msgstr ""
"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Poslužitelj"
@@ -4290,34 +4343,13 @@ msgstr "Poslužitelj"
msgid "View"
msgstr "Prikaz"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Strukturu"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4414,8 +4446,8 @@ msgstr "Dodaj/Izbriši stupce polja"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Baze podataka"
@@ -4536,7 +4568,7 @@ msgid "Recent"
msgstr "Povrat"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4613,16 +4645,6 @@ msgstr "Spojevi"
msgid "Sorting"
msgstr "Preslagivanje"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tablice"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Koordinator transakcije"
@@ -5154,7 +5176,7 @@ msgstr "Najv: %s%s"
msgid "MySQL said: "
msgstr "MySQL je poručio: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Objasni SQL"
@@ -5171,7 +5193,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Izradi PHP kod"
@@ -5290,17 +5312,6 @@ msgstr "Upotrijebi ovu vrijednost"
msgid "Rows"
msgstr "Redaka"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Podaci"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5486,7 +5497,7 @@ msgstr "Poslužitelj"
msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5494,24 +5505,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Trebali biste nadograditi na %s %s ili kasniju."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5764,7 +5775,7 @@ msgid "Set value: %s"
msgstr "Postavi vrijednost %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Vrati zadanu vrijednost"
@@ -6182,7 +6193,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6192,7 +6203,7 @@ msgstr "Izjave"
msgid "Save as file"
msgstr "Spremi kao datoteku"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Tablica znakova za datoteku:"
@@ -6222,17 +6233,17 @@ msgstr "Kompresija"
msgid "Put columns names in the first row"
msgstr "Nazive polja stavi u prvi red"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Polja obuhvaćena po"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6252,16 +6263,16 @@ msgstr "NULL zamijeni s"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Redovi završeni s"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6342,7 +6353,7 @@ msgid "Save on server"
msgstr "Spremi na server"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Prepiši postojeće datoteke"
@@ -6362,8 +6373,8 @@ msgstr "Dodaj vrijednost AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Način rada SQL kompatibilnosti"
@@ -6486,16 +6497,16 @@ msgid "Customize browse mode."
msgstr "Rad s automatskim povratom"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
msgid "Customize default options."
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6526,7 +6537,7 @@ msgstr "Uvezi datoteke"
msgid "Customize default export options."
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Mogućnosti"
@@ -6578,178 +6589,190 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Postavi glavni okvir"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Customize main frame"
+msgid "Navigation tree"
+msgstr "Postavi glavni okvir"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize main frame"
+msgid "Customize the navigation tree."
+msgstr "Postavi glavni okvir"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Poslužitelji"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "Glavni okvir"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Ostale postavke jezgre"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Broj stranice:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Sigurnost"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Osnovne postavke"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Dokumentacija"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
msgid "Authentication settings."
msgstr "Replikacija"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Konfiguracija servera"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "MySQL uspoređivanje veza"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Pohrana konfiguracije"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid "Customize export options"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
#, fuzzy
msgid "Customize import defaults"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize navigation panel"
msgstr "Postavi glavni okvir"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "Postavi glavni okvir"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "Stanje"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize startup page."
msgstr "Postavi glavni okvir"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database for user"
msgid "Database structure"
msgstr "Baza podataka za korisnika"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6757,84 +6780,84 @@ msgstr ""
msgid "Table structure"
msgstr "Baza podataka za korisnika"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Tablica"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Shema relacija"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Veličina papira"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Upotrijebi tekstualno polje"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
msgid "Customize text input fields."
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! tekst"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
msgid "Customize default options"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Upozorenja"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
#, fuzzy
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
@@ -6845,119 +6868,119 @@ msgstr ""
"ograničenja. Ovo bi mogao biti dobar način uvoza velikih datoteka, ali može "
"prekinuti transakcije."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Oblikovanje uvezene datoteke"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Upotrijebi lokalnu ključnu riječ"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Nazive polja stavi u prvi red"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start."
msgstr "Broj zapisa (upita) koje je potrebno preskočiti od početka"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Dodaj vrijednost AUTO_INCREMENT"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
#, fuzzy
msgid "Number of inserted rows"
msgstr "Broj presloženih redaka."
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Izbriši svve kolačiće na odlasku"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6965,51 +6988,51 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of databases displayed in database list."
msgstr "Broj otvorenih tablica."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
#, fuzzy
msgid "Maximum databases"
msgstr "Nema baza podataka"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -7017,13 +7040,13 @@ msgid ""
"the navigation tree."
msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum items on first level"
msgstr "Najveća veličina datoteke za privremeno preslagivanje"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -7031,102 +7054,102 @@ msgid ""
"tree."
msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of tables displayed in table list."
msgstr "Broj otvorenih tablica."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
#, fuzzy
msgid "Memory limit"
msgstr "Ograničenja resursa"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show databases navigation as tree"
msgstr "Prikaži logo u lijevom okviru"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "Prikaži logo u lijevom okviru"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Prikaži logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "Show logo in left frame"
msgid "URL where logo in the navigation panel will point to."
msgstr "Prikaži logo u lijevom okviru"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "The number of tables that are open."
msgid ""
@@ -7134,992 +7157,1048 @@ msgid ""
"display a filter box."
msgstr "Broj otvorenih tablica."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Minimum number of items to display the filter box"
msgstr "Broj otvorenih tablica."
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Minimum number of databases to display the database filter box"
msgstr "Broj otvorenih tablica."
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
#, fuzzy
msgid "Database tree separator"
msgstr "Predložak naziva datoteka"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Naslov tablice"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Prikaži tablice"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Prikaži logo u lijevom okviru"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Prikaži mrežu"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Prikaži logo u lijevom okviru"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Connections since last refresh"
+msgid "Show functions in tree"
+msgstr "Veze od zadnjeg osvježavanja"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Prikaži procese"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Prikaži mrežu"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Prikaži logo u lijevom okviru"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Broj otvorenih tablica."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
msgid "Recently used tables"
msgstr "Provjeri tablicu"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Izmijeni rasporede tablice po"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Naslov tablice"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Persistent connections"
msgid "Use persistent connections to MySQL databases."
msgstr "Stalne veze"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Stalne veze"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Preimenuj tablicu u"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Primarni ključ je dodan na %s."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Popravi grane"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Polje za prikaz relacija"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
#, fuzzy
msgid "Save directory"
msgstr "Osnovna mapa podataka"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Vrijednost sesije"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
msgid "Authentication method to use."
msgstr "Replikacija"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tip autentifikacije"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Zabilježi tablicu"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Neuspješno spajanje na MySQL server"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Komprimiraj vezu"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "Veze"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Kontroliraj korisničke lozinke"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bilo koje računalo"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Bilo koje računalo"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Nema baza podataka"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "naziv poslužitelja"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Dodaj/Izbriši stupce polja"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Connect without password"
msgid "Try to connect without password."
msgstr "Spoji se bez lozinke"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Spoji se bez lozinke"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "naziv baze podataka"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "ID poslužitelja"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiziraj tablicu"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Varijable"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Popravi tablicu"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Odabir poslužitelja"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Neuspješno spajanje na MySQL server"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Koristi SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Prikazivanje stupca komentara"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmentiraj tablicu"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Izjave"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Rad s automatskim povratom"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Upotrijebi tablice"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Upotrijebi tablicu poslužitelja"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentari tablice"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži PHP podatke"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Prikaži stanje potčinjenog"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Prikaži otvorene tablice"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Prikaži phpinfo() link"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Prikaži detaljne informacije o MySQL serveru"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "Prikaži pune upite"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Statistike redova"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
#, fuzzy
msgid "Skip locked tables"
msgstr "Prikaži otvorene tablice"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
msgid "Default title"
msgstr "Preimenuj bazu podataka u"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8127,53 +8206,53 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
#, fuzzy
msgid "Upload directory"
msgstr "Osnovna mapa podataka"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8181,85 +8260,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Korisničko ime:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "ID poslužitelja"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8285,48 +8364,48 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV upotrebom LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Otvori izračunsku tablicu dokumenta"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Brzo"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Prilagođena boja"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8357,7 +8436,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8436,7 +8515,7 @@ msgstr "Izradi tablicu"
msgid "Number of columns"
msgstr "Broj polja"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!"
@@ -8492,70 +8571,70 @@ msgstr "Tablice"
msgid "Format:"
msgstr "Oblikovanje"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Opcije preoblikovanja"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
#, fuzzy
msgid "Encoding Conversion:"
msgstr "MySQL verzija klijenta"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Redaka"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Spremi na poslužitelju u mapi %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Predložak naziva datoteka"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8570,84 +8649,96 @@ msgstr ""
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
"preoblikovanja: \"%3$s\". Ostatak teksta bit će zadržan u izvornom obliku."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Tablica znakova za datoteku:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Kompresija"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zipano\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzipano\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Spremi kao datoteku"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Izradi novu tablicu u bazi podataka %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "vodoravno (okrenuta zaglavlja)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Spremi kao datoteku"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Odaberite tablice"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Odaberite tablice"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "naziv baze podataka"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Nema tablica"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Nazivi stupaca"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9278,7 +9369,7 @@ msgid "Create an index on %s columns"
msgstr "Izradi indeks %s stupaca"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Sakrij"
@@ -9429,11 +9520,6 @@ msgstr "Pet"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Podnesi"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add prefix"
@@ -9653,29 +9739,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Nazivi stupaca"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Događaji"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Funkcije"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Postupci"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Tablice"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9705,13 +9797,13 @@ msgstr "Postavi glavni okvir"
msgid "Reload navigation panel"
msgstr "Postavi glavni okvir"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9719,26 +9811,26 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "table name"
msgid "Filter databases by name or regex"
msgstr "naziv tablice"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Spremi kao datoteku"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "table name"
msgid "Filter by name or regex"
msgstr "naziv tablice"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9778,7 +9870,7 @@ msgstr "Novo"
msgid "Database operations"
msgstr "Opcije izvoza baze podataka"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -11075,26 +11167,26 @@ msgstr "Nazivi stupaca"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Neispravan parametar za CSV uvoz: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@@ -11530,63 +11622,63 @@ msgstr "Oblikuje tekst kao SQL upit s naglašavanjem sintakse."
msgid "Formats text as XML with syntax highlighting."
msgstr "Oblikuje tekst kao SQL upit s naglašavanjem sintakse."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Pogreška: Relacija već postoji."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "Dodana je relacija FOREIGN KEY"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Pogreška: Relacija nije dodana."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "Pogreška: Relacija nije dodana."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Dodane interne relacije"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Pogreška: Relacija nije dodana."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "Dodana je relacija FOREIGN KEY"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Pogreška: Relacija nije dodana."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Pogreška: Relacija nije dodana."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11686,54 +11778,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Preimenuj tablicu u"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "bez opisa"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12562,7 +12660,7 @@ msgstr "Provjeri tablicu"
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -18042,9 +18140,6 @@ msgstr "najv. uzastopnih veza"
#~ msgid "Server traffic (in KiB)"
#~ msgstr "Odabir poslužitelja"
-#~ msgid "Connections since last refresh"
-#~ msgstr "Veze od zadnjeg osvježavanja"
-
#~ msgid "Questions since last refresh"
#~ msgstr "Upiti od zadnjeg osvježavanja"
@@ -18414,9 +18509,6 @@ msgstr "najv. uzastopnih veza"
#~ msgid "Reset"
#~ msgstr "Povrat"
-#~ msgid "Show processes"
-#~ msgstr "Prikaži procese"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Povrat"
diff --git a/po/hu.po b/po/hu.po
index f183f5852e..47ee9bc438 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
-"PO-Revision-Date: 2015-06-23 08:32+0200\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
+"PO-Revision-Date: 2015-06-28 23:09+0200\n"
"Last-Translator: Balázs Úr
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2317,28 +2359,28 @@ msgstr ""
"DESC váltogatása.
- Oszlop eltávolítása az ORDER BY kikötésből Ctrl"
"+kattintás vagy Alt+kattintás (Mac: Shift+Option+kattintás) használatával"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Kattintson a kijelöléshez / kijelölés megszüntetéséhez."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Az oszlopnév másolásához kattintson duplán."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr ""
"Kattintson a legördülő nyílra
az oszlop láthatóságának ki/"
"bekapcsolásához."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Összes megjelenítése"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2347,13 +2389,13 @@ msgstr ""
"rendelt funkciók mint Szerkesztés, Másolás és Törlés nem feltétlenül lesznek "
"elérhetők mentés után."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Adjon meg egy érvényes hexadecimális szöveget. Az érvényes karakterek: 0-9, "
"A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2361,130 +2403,130 @@ msgstr ""
"Valóban meg szeretné nézni az összes sort? Egy nagy tábla esetén ez "
"összeomlaszthatja a böngészőt."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Eredeti hossz"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "mégse"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Megszakítva"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Sikerült"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Importálás állapota"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Ejtse ide a fájlokat"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Először válasszon adatbázist"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "Az elemek nagy része szerkeszthetővé válik
dupla kattintással."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "Az elem szerkeszthetővé
válik kattintással."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Ugrás a hivatkozáshoz:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Oszlopnév másolása."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"A vágólapra való másoláshoz kattintson jobb egérgombbal az oszlop nevére."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Jelszó generálása"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generálás"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Jelszó megváltoztatása"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Több"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Panel megjelenítése"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Panel elrejtése"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Hozzákapcsolás a fő panelhez"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Eltávolítás a fő panelről"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"A kiszolgálón lévő összes adatbázis szűréséhez nyomja meg azt Entert a "
"keresési kifejezés után"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Az adatbázisban lévő összes %s szűréséhez nyomja meg azt Entert a keresési "
"kifejezés után"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "táblák"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "nézetek"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "eljárások"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "események"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "függvények"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "A kért oldal nem található az Előzményekben, talán már lejárt."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2494,42 +2536,42 @@ msgstr ""
"%s, kiadás dátuma: %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", utolsó stabil verzió:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "friss"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Nézet létrehozása"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Hibajelentés küldése"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Hibajelentés beküldése"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr "Végzetes JavaScript hiba történt. Szeretne hibajelentést küldeni?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Jelentés beállítások megváltoztatása"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Jelentés részleteinek megjelenítése"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2537,7 +2579,7 @@ msgstr ""
"Az exportálás nem teljes a PHP szinten lévő alacsony végrehajtási időkorlát "
"miatt!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2547,59 +2589,59 @@ msgstr ""
"Elküldéskor a mezők egy része mellőzve lehet a PHP max_input_vars beállítása "
"miatt."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Hibák észlelhetők a kiszolgálón!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Nézze meg ennek az ablaknak az alját."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Összes mellőzése"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"A beállítások szerint jelenleg elküldés alatt vannak, legyen türelemmel."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Végrehajtja ismét ezt a lekérdezést?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Valóban törölni szeretné ezt a könyvjelzőt?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr "Hibák történtek az SQL hibakeresési információk lekérése közben."
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "%s kérés került végrehajtásra %s alkalommal %s másodperc alatt."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr "%s argumentum került átadásra"
-#: js/messages.php:594
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Argumentumok megjelenítése"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Argumentumok elrejtése"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr "Felhasznált idő:"
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2610,331 +2652,331 @@ msgstr ""
"működni. Safari böngészőben a „Privát módú böngészés” okoz gyakran ilyen "
"problémát."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Előző"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Következő"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Ma"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Január"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Február"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Március"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Április"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Május"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Június"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Július"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Augusztus"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Szeptember"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Október"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "November"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Már"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Ápr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sze"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Vasárnap"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Hétfő"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Kedd"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Szerda"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Csütörtök"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Péntek"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Szombat"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Vas"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Hét"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Ked"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Csü"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pén"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Szo"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Va"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Hé"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Sze"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Cs"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Pé"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Szo"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Hét"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "nincs"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Óra"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Perc"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "másodperc"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Ez a mező kötelező"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Javítsa ezt a mezőt"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Adjon meg egy érvényes e-mail címet"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Adjon meg egy érvényes URL-t"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Adjon meg egy érvényes dátumot"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Adjon meg egy érvényes dátumot (ISO)"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Adjon meg egy érvényes számot"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Adjon meg egy érvényes hitelkártya számot"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Csak számjegyeket adjon meg"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Adja meg ismét ugyanazt az értéket"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Ne adjon meg {0} karakternél többet"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Adjon meg legalább {0} karaktert"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Adjon meg egy {0} és {1} közé eső karakterszámú értéket"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Adjon meg egy értéket {0} és {1} között"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Adjon meg értéket, amely kisebb vagy egyenlő mint {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Adjon meg értéket, amely nagyobb vagy egyenlő mint {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Adjon meg egy érvényes dátumot vagy időt"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Adjon meg egy érvényes HEX bemenetet"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3009,16 +3051,16 @@ msgstr "óránként"
msgid "per day"
msgstr "naponta"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "A létező beállító fájl (%s) nem olvasható."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "A konfigurációs fájl helytelen írási engedéllyel rendelkezik!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Betűméret"
@@ -3037,7 +3079,7 @@ msgid "Requery"
msgstr "Újra lekérdezés"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3215,7 +3257,7 @@ msgid "Count:"
msgstr "Darabszám:"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3388,7 +3430,7 @@ msgstr "Könyvjelző frissítése"
msgid "Delete bookmark"
msgstr "Könyvjelző törlése"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3396,20 +3438,20 @@ msgstr ""
"A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően "
"beállítotva)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "A kiszolgáló nem válaszol."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
"Kérjük, ellenőrizze az adatbázist tartalmazó könyvtár hozzáférési jogait."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Részletek…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem "
@@ -3485,6 +3527,16 @@ msgstr "A szavak elválasztása szóköz karakterrel (\" \")."
msgid "Inside tables:"
msgstr "Belső táblák:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Mind kijelölése"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Minden kijelölés törlése"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Mezőben:"
@@ -3538,7 +3590,7 @@ msgid "All"
msgstr "Mind"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Sorok száma:"
@@ -3840,7 +3892,7 @@ msgstr ""
"eltávolítható."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Kiszolgáló"
@@ -3851,34 +3903,13 @@ msgstr "Kiszolgáló"
msgid "View"
msgstr "Nézet"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Szerkezet"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3973,8 +4004,8 @@ msgstr "Központi oszlopok"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Adatbázisok"
@@ -4077,7 +4108,7 @@ msgid "Recent"
msgstr "Legutóbbi"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Kedvenc táblák"
@@ -4146,16 +4177,6 @@ msgstr "Illesztések"
msgid "Sorting"
msgstr "Rendezés"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tábla"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Tranzakció koordinátor"
@@ -4718,7 +4739,7 @@ msgstr "Max: %s%s"
msgid "MySQL said: "
msgstr "A MySQL mondta: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Az SQL magyarázata"
@@ -4735,7 +4756,7 @@ msgstr "Magyarázat elemzése itt: %s"
msgid "Without PHP Code"
msgstr "PHP kód nélkül"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
@@ -4848,17 +4869,6 @@ msgstr "Ezen érték használata"
msgid "Rows"
msgstr "Sorok"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Adatok"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5023,7 +5033,7 @@ msgstr "Kiszolgáló %d"
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:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5035,24 +5045,24 @@ msgstr ""
"beállításait. A phpMyAdmin jelenleg az adatbázis-kiszolgáló alapértelmezett "
"időzónáját használja."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Frissítenie kell %s %s vagy újabb verzióra."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Hiba: Token eltérés"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS felülírási kísérlet"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "lehetséges kiaknázás"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "numerikus kulcs észlelve"
@@ -5273,7 +5283,7 @@ msgid "Set value: %s"
msgstr "Adja meg az értéket: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Alapértelmezett érték visszaállítása"
@@ -5756,7 +5766,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Végrehajtási idő legfeljebb"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "%s utasítás használata"
@@ -5765,7 +5775,7 @@ msgstr "%s utasítás használata"
msgid "Save as file"
msgstr "Mentés fájlként"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "A fájl karakterkészlete"
@@ -5792,15 +5802,15 @@ msgstr "Tömörítés"
msgid "Put columns names in the first row"
msgstr "A mezőneveket tegye az első sorba"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Oszlopok körbezárása ezzel"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Oszlopok escape-elése ezzel"
@@ -5816,14 +5826,14 @@ msgstr "NULL cseréje ezzel"
msgid "Remove CRLF characters within columns"
msgstr "A mezőkben lévő CRLF karakterek eltávolítása"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Oszlopok végződése ezzel"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Sorok végződése ezzel"
@@ -5893,7 +5903,7 @@ msgid "Save on server"
msgstr "Mentés a kiszolgálón"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "A létező fájl(ok) felülírása"
@@ -5910,8 +5920,8 @@ msgstr "AUTO_INCREMENT érték hozzáadása"
msgid "Enclose table and column names with backquotes"
msgstr "Idézőjelek használata a tábla- és mezőneveknél"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL kompatibilitási mód"
@@ -6028,15 +6038,15 @@ msgid "Customize browse mode."
msgstr "A böngésző mód testreszabása."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Alapértelmezett beállítások testreszabása."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6064,7 +6074,7 @@ msgstr "Exportálás alapértelmezései"
msgid "Customize default export options."
msgstr "Az exportálás alapértelmezett beállításainak testreszabása."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Funkciók"
@@ -6111,40 +6121,50 @@ msgstr "Navigációs keret"
msgid "Customize appearance of the navigation panel."
msgstr "A navigációs keret megjelenésének testreszabása."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigációs fa"
+
+#: libraries/config/messages.inc.php:249
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "A navigációs fa testreszabása."
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Kiszolgálók"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "A kiszolgálók megjelenítésének beállításai."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "A táblák megjelenítésének beállításai."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Fő keret"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Egyéb alapbeállítások"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "A sehova sem illő beállítások."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Oldalcímek"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6153,11 +6173,11 @@ msgstr ""
"[doc@faq6-27]dokumentációra[/doc] a mágikus parancsok végett, amiket "
"speciális értékek megjelenítésére használhat."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Biztonság"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6165,23 +6185,23 @@ msgstr ""
"Ne feledje, hogy a phpMyAdmin csak egy felhasználói kezelőfelület, és "
"funkciói nem korlátozzák a MySQL-t."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Alapbeállítások"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Hitelesítés típusa"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Hitelesítés beállításai."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Kiszolgáló beállítások"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6189,15 +6209,15 @@ msgstr ""
"Speciális kiszolgáló beállítások, amelyeket ne módosítson, ha nem tudja, "
"hogy mire valók."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Adja meg a kiszolgáló csatlakozási paramétereit."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Beállítástároló"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6207,123 +6227,123 @@ msgstr ""
"hozzáférést, nézze meg a [doc@linked-tables]phpMyadmin beállítástárolók[/"
"doc] fejezetet a dokumentációban."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Változások követése"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
"Változások követése az adatbázisban. A phpMyAdmin beállítástárolóját igényli."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Exportálás beállításainak testreszabása"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Importálás alapértelmezéseinek testreszabása"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "A navigációs keret testreszabása"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "A fő keret testreszabása"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL-lekérdezések"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL-lekérdezési panelek"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
"Az SQL-lekérdezési dobozokban megjelenített hivatkozások testreszabása."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "SQL-lekérdezések beállításai."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Indítás"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "A kezdőlap testreszabása."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Adatbázis-szerkezet"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Válassza ki, melyik részletek jelenjenek meg az adatbázis szerkezetben "
"(táblák listája)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Táblaszerkezet"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Beállítások a táblaszerkezethez (oszlopok listája)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Fülek"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Válassza ki, hogyan kívánja használni a lapokat."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Kapcsolati séma megjelenítése"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Papírméret"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Szöveges mezők"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Szöveges beviteli mezők testreszabása."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! szöveg"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Alapértelmezett beállítások testreszabása"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Figyelmeztetések"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Egyes phpMyAdmin által megjelenített figyelmeztetések letiltása."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6331,15 +6351,15 @@ msgstr ""
"A [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] tömörítés engedélyezése az "
"importálási és az exportálási műveletekhez."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Az iconv funkció extra paraméterei"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6347,11 +6367,11 @@ msgstr ""
"Ha engedélyezve van, akkor a phpMyAdmin folytatja a több utasításból álló "
"lekérdezések kiszámítását, ha nem sikerült az egyik lekérdezés."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Több utasítás hibáinak figyelmen kívül hagyása"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6361,25 +6381,25 @@ msgstr ""
"szerint közel van az időkorláthoz. Ez a nagy fájlok importálásának lehet jó "
"módja, azonban megszakíthatja a tranzakciókat."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Részleges importálás: a megszakítás engedélyezése"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Ne legyen megszakítás INSERT hiba esetén"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr "ON DUPLICATE KEY UPDATE hozzáadása"
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr "Adatok frissítése, ha kettőzött kulcsok találhatók importáláskor"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6387,70 +6407,70 @@ msgstr ""
"Alapértelmezett formátum. Tartsa szem előtt, hogy ez a lista függ a helytől "
"(adatbázis, tábla) és csak az SQL érhető el mindig."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Az importált fájl formátuma"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "LOCAL kulcsszó használata"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "A mezőnevek az első sorban"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Ne importálja az üres sorokat"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Valuták importálása ($5.00 helyett 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
"Százalékos értékek importálása pontos tizedestörtként (12.00% helyett .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Az elejétől kihagyandó lekérdezések száma."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Részleges importálás: lekérdezések kihagyása"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ne használja az AUTO_INCREMENT-et nulla értékekhez"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Csúszkák kezdeti állapota"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Hány sor szúrható be egyszerre."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "A beszúrt sorok száma"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"A megjelenített karakterek legnagyobb száma nem numerikus oszlop esetén a "
"böngésző nézetben."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Mező-karakterek korlátozása"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6461,11 +6481,11 @@ msgstr ""
"kiszolgáló használata esetén könnyen megfeledkezhet a másik kiszolgálóról "
"való kijelentkezésről."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Kijelentkezéskor az összes cookie törlése"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6473,11 +6493,11 @@ msgstr ""
"Meghatározza, hogy az előző bejelentkezést kell-e újrahívni vagy sem a "
"[kbd]cookie[/kbd] hitelesítési módban."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "A felhasználónév újrahívása"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6489,50 +6509,50 @@ msgstr ""
"munkamenetekhez kerül megtartásra, vagyis a böngésző ablakának bezárásakor "
"azonnal törlésre kerül. Ez nem megbízható környezetek esetén ajánlott."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "A bejelentkezési cookie tárolása"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
"Meghatározza, hogy meddig érvényes (másodpercben) egy bejelentkezési süti."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "A bejelentkezési cookie érvényessége"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "A szövegdoboz méretének duplázása LONGTEXT oszlopoknál."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Nagyobb LONGTEXT szövegbeviteli mezők"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
"Egy SQL-lekérdezés megjelenítésekor használt karakterek legnagyobb száma."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "A SQL kijelzett hossza legfeljebb"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "A felhasználók nem adhatnak meg nagyobb értéket"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Az adatbázis-listában megjelenített adatbázisok legnagyobb száma."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Az adatbázisok száma"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6540,21 +6560,21 @@ msgstr ""
"A navigációs faszerkezet első szintjének egyes oldalain megjeleníthető "
"elemek száma."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Az első szinten lévő legtöbb elem"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr "A navigációs faszerkezet egyes oldalain megjeleníthető elemek száma."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Ág maximális elemeinek száma"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6563,19 +6583,19 @@ msgstr ""
"eredményhalmaz több sort tartalmaz, akkor az \"Előző\" és a \"Következő\" "
"hivatkozás lesz látható."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "A megjelenítendő sorok száma"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "A táblalistában megjelenített táblák legnagyobb száma."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "A táblák száma"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6583,40 +6603,40 @@ msgstr ""
"Egy parancsfájl számára a lefoglaláshoz engedélyezett bájtok száma, például "
"[kbd]32M[/kbd] (korlátlan: [kbd]0[/kbd])."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "A memória korlátozása"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr "A navigációs panelen lecseréli az adatbázisfát egy kiválasztóra"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Adatbázisok navigációjának megjelenítése faszerkezetként"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Összekapcsolás a fő panellel a jelenlegi adatbázis vagy tábla kiemelésével."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Logó megjelenítése a navigációs panelen."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "A logó megjelenítése"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "Az URL, ahová a navigációs panelen lévő logó mutatni fog."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "A logó hivatkozásának URL-címe"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6624,41 +6644,41 @@ msgstr ""
"A hivatkozott oldal megnyitása a főablakban ([kbd]main[/kbd]) vagy egy újban "
"([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "A logó hivatkozásának célja"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "A választható kiszolgálók megjelenítése a navigációs panel tetején."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Kiszolgálók kiválasztásának megjelenítése"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "A gyors hozzáférés ikon célja"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "A második gyors hozzáférés ikon célja"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr "A szűrődoboz megjelenítéséhez szükséges táblák minimális száma."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "A szűrődoboz megjelenítéséhez szükséges elemek minimális száma"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "A szűrődoboz megjelenítéséhez szükséges minimális adatbázisok száma"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6666,105 +6686,155 @@ msgstr ""
"Elemek csoportosítása a navigációs faszerkezetben (a fenti Adatbázisok és "
"táblák lapon megadott elválasztó által meghatározva)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Elemek csoportosítása a fában"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Az adatbázisokat különféle fa szintekre elválasztó karakterlánc."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Az adatbázisfa elválasztója"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "A táblákat különféle fa szintekre tagoló karakterlánc."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Táblafa elválasztó"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "A táblafa mélysége legfeljebb"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Kiszolgáló kiemelése az egérmutató alatt."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "A szövegkiemelés engedélyezése"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr "Ajánlja-e fel a fa kiterjesztésének lehetőségét a navigációs panelen."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Navigációs fa kiterjesztés engedélyezése"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Táblák megjelenítése a fában"
+
+#: libraries/config/messages.inc.php:489
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Jelenítse-e meg a táblákat az adatbázis alatt a navigációs fában"
+
+#: libraries/config/messages.inc.php:490
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Nézetek megjelenítése a fában"
+
+#: libraries/config/messages.inc.php:492
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Jelenítse-e meg a nézeteket az adatbázis alatt a navigációs fában"
+
+#: libraries/config/messages.inc.php:493
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Függvények megjelenítése a fában"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr "Jelenítse-e meg a függvényeket az adatbázis alatt a navigációs fában"
+
+#: libraries/config/messages.inc.php:496
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Eljárások megjelenítése a fában"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr "Jelenítse-e meg az eljárásokat az adatbázis alatt a navigációs fában"
+
+#: libraries/config/messages.inc.php:499
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Események megjelenítése a fában"
+
+#: libraries/config/messages.inc.php:501
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Jelenítse-e meg az eseményeket az adatbázis alatt a navigációs fában"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Az utoljára használt táblák legnagyobb száma; állítsa 0-ra a tiltáshoz."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "A kedvenc táblák legnagyobb száma; állítsa 0-ra a tiltáshoz."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Utoljára használt táblák"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Ezek a Szerkesztés, Másolás és Törlés hivatkozások."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Hol legyenek a táblasor linkek"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr "Jelenjenek-e meg sorhivatkozások az egyedi kulcs hiányában is."
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr "Sorhivatkozások megjelenítése mindenképp"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
"Természetes sorrend használata a tábla- és adatbázisnevek rendezésénél."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Természetes rendezés"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Csak ikonok, csak szöveg vagy mindkettő használata."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Navigációs sáv"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"A GZip-kimenet pufferelésének használata a HTTP-átvitelek sebességének "
"növeléséhez."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip-kimenet pufferelése"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6772,19 +6842,19 @@ msgstr ""
"[kbd]SMART[/kbd] - azaz a TIME, DATE, DATETIME és TIMESTAMP típusú oszlopok "
"sorrendje csökkenő, egyéb esetben növekvő."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Alapértelmezett rendezési mód"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Állandó kapcsolatok használata a MySQL adatbázisokhoz."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Állandó kapcsolatok"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6794,11 +6864,11 @@ msgstr ""
"Szerkezet oldalon jelenik meg, ha a phpMyAdmin beállítástároló táblák "
"valamelyike nem található."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Hiányzó phpMyAdmin beállítástároló táblák"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6806,11 +6876,11 @@ msgstr ""
"Alapértelmezett figyelmeztetés kikapcsolása, ha különbség észlelhető a MySQL "
"könyvtár és a kiszolgáló között."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Kiszolgáló/programkönyvtár eltérés figyelmeztetés"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6818,27 +6888,27 @@ msgstr ""
"A Szerkezet oldalon megjelenített alapértelmezett figyelmeztetés letiltása, "
"ha a táblában lévő oszlopnevek a MySQL által fenntartott szavak."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "MySQL fenntartott kifejezés figyelmeztetés"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Menü fülek megjelenítésének módja"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Hogy jelenjenek meg a különböző műveletek linkjei"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "A BLOB és BINARY oszlopok módosításának tiltása."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "A bináris mezők védelme"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6849,110 +6919,110 @@ msgstr ""
"eljárásokat használ fel a lekérdezési előzmények megjelenítéséhez (az ablak "
"bezárásakor elvesznek)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Állandó lekérdezési előzmények"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Hány lekérdezés legyen megtartva az előzményekben."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "A lekérdezési előzmények hossza"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Válassza ki, hogy mely függvények legyenek a karakterkészlet átalakításához "
"használva."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Átkódoló motor"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "A táblák böngészése során az egyes táblák rendezése megmarad."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Emlékezzen a tábla elrendezésére"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
"Alapértelmezett rendezési sorrend az elsődleges kulccsal rendelkező "
"tábláknál."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Elsődleges kulcs alapértelmezett rendezési sorrendje"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"A fejlécek ismétlése minden X cellánként, a [kbd]0[/kbd] kikapcsolja ezt a "
"lehetőséget."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Fejlécek ismétlése"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Rács szerkesztés: eseményindító művelet"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Relációs megjelenítés"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "A beállítások megjelenítéséhez"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Rács szerkesztés: minden szerkesztett cella mentése egyszerre"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "A könyvtár, melybe az exportálások menthetők a kiszolgálón."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Mentési könyvtár"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Hagyja üresen, ha nem használja."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Az állomás hitelesítési sorrendje"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Hagyja üresen az alapértelmezésekhez."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Az állomás hitelesítési szabályai"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "A jelszó nélküli bejelentkezés engedélyezése"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "A root bejelentkezés engedélyezése"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Munkamenet időzóna"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -6960,15 +7030,15 @@ msgstr ""
"Beállítja a tényleges időzónát, valószínűleg eltér az adatbázis-kiszolgáló "
"időzónájától"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "A megjelenítendő HTTP Basic Auth Realm neve HTTP hitelesítés közben."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP-tartomány"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6978,19 +7048,19 @@ msgstr ""
"elérési útja (nem a dokumentum gyökerében található; javaslat: /etc/swekey."
"conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey konfigurációs fájl"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "A használandó hitelesítési mód."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Hitelesítés típusa"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6998,11 +7068,11 @@ msgstr ""
"Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]könyvjelző[/a] támogatás, alapértelmezés: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Könyvjelzők táblája"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7010,33 +7080,33 @@ msgstr ""
"Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, ajánlott: "
"[kbd]pma_column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Oszlopinformációs tábla"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "A MySQL-kiszolgálóhoz való kapcsolat tömörítése."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Kapcsolat tömörítése"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Hogyan kapcsolódjon a kiszolgálóhoz, hagyja meg a [kbd]tcp[/kbd] értéket, ha "
"bizonytalan."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Csatlakozás típusa"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "A kontrollfelhasználó jelszava"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7045,11 +7115,11 @@ msgstr ""
"információk érhetők el a [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/"
"a] oldalon."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Kontrollfelhasználó"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7057,11 +7127,11 @@ msgstr ""
"Egy alternatív gép a beállítástároló kezeléséhez; hagyja üresen a már "
"megadott gép használatához."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Kontrollgép"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7071,15 +7141,15 @@ msgstr ""
"hagyja üresen az alapértelmezett port használatához, vagy a már definiált "
"port, ha a kontrollgép és a gép ugyanaz."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Kontroll port"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "A (PCRE) reguláris kifejezésre illeszkedő adatbázisok elrejtése."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7088,15 +7158,15 @@ msgstr ""
"hibakövetőben[/a] és a [a@http://bugs.mysql.com/19588]MySQL "
"hibabejelentőben[/a] olvashat róla"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Az INFORMATION_SCHEMA használatának letiltása"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Adatbázisok elrejtése"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7104,23 +7174,23 @@ msgstr ""
"Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek "
"támogatására, ajánlott: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL-lekérdezések előzményeinek táblája"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "A gépnév, ahol a MySQL-kiszolgáló fut."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "A kiszolgáló gépneve"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Kijelentkezési URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7128,15 +7198,15 @@ msgstr ""
"Korlátozza a táblabeállítások számát, amelyek adatbázisban tárolódnak, a "
"legrégebbi rekordok automatikusan törlődnek."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "A tárolandó táblabeállítások legnagyobb száma"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "QBE mentett keresések táblája"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7144,11 +7214,11 @@ msgstr ""
"Hagyja üresen, ha nem szeretne QBE mentett keresések támogatást, ajánlott: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Központi oszlopok táblája"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7156,15 +7226,15 @@ msgstr ""
"Hagyja üresen, ha nincs szükség központi oszlopok támogatására, ajánlott: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Kapcsolódási kísérlet jelszó nélkül."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Kapcsolódás jelszó nélkül"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7174,30 +7244,30 @@ msgstr ""
"literális formájukat használná, pl. használja a [kbd]'my\\_db'[/kbd] alakot, "
"s ne a [kbd]'my_db'[/kbd] alakot."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Csak a kilistázott adatbázisok megjelenítése"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Hagyja üresen, ha nem konfigurációs hitelesítést használ."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "A konfigurációs hitelesítés jelszava"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Hagyja üresen, ha nem szeretne PDF-séma támogatást, ajánlott: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF-séma: pages table"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7208,22 +7278,22 @@ msgstr ""
"oldalon. Hagyja üresen, ha nincs szükség a támogatására. Ajánlott: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Adatbázis neve"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"A port, melyen a MySQL-kiszolgáló figyel, hagyja üresen az "
"alapértelmezetthez."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "A kiszolgáló portja"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7231,11 +7301,11 @@ msgstr ""
"Hagyja üresen, ha nincs szükség a legutóbb használt táblák „állandó” "
"tárolására a munkamenetek között, ajánlott: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Utoljára használt tábla"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7243,11 +7313,11 @@ msgstr ""
"Hagyja üresen, ha nincs szükség a kedvenc táblák „állandó” tárolására a "
"munkamenetek között, ajánlott: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Kedvencek tábla"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7255,11 +7325,11 @@ msgstr ""
"Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/relation]relációs "
"hivatkozás[/a] támogatás, ajánlott: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Kapcsolat tábla"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7267,33 +7337,33 @@ msgstr ""
"Lásd a [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]hitelesítési "
"típusok[/a] példáját."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Signon munkamenet neve"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Signon URL-címe"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"A szoftvercsatorna, melyen a MySQL-kiszolgáló figyel, hagyja üresen az "
"alapértelmezetthez."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "A kiszolgáló szoftvercsatornája"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "SSL engedélyezése a MySQL-kiszolgálóhoz való kapcsolathoz."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "SSL használata"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7301,11 +7371,11 @@ msgstr ""
"Hagyja üresen, ha nincs PDF-séma támogatás, ajánlott: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Tervező és PDF-séma: table coordinates"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7313,11 +7383,11 @@ msgstr ""
"Tábla a megjelenített oszlopok leírásához, hagyja üresen, ha nem kíván "
"megadni leírást; ajánlott: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Oszlopok tábla megjelenítése"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7325,11 +7395,11 @@ msgstr ""
"Hagyja üresen, ha nincs szükség az „állandó” táblák UI beállításaira a "
"munkamenetek között, ajánlott: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Felhasználói felület beállítások tábla"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7337,11 +7407,11 @@ msgstr ""
"DROP DATABASE IF EXISTS utasítás hozzá lesz adva a napló első sora ként az "
"adatbázis létrehozása során."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE hozzáadása"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7349,11 +7419,11 @@ msgstr ""
"DROP TABLE IF EXISTS utasítás hozzá lesz adva a napló első sora ként a tábla "
"létrehozása során."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "DROP TABLE hozzáadása"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7361,20 +7431,20 @@ msgstr ""
"A DROP VIEW IF EXISTS utasítás hozzá legyen-e adva a napló első soraként a "
"nézet létrehozása során."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "DROP VIEW hozzáadása"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Állítások listájának definiálása az új verziójú automata-létrehozások során."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Utasítások követésre"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7382,11 +7452,11 @@ msgstr ""
"Hagyja üresen, ha nincs szükség az SQL-lekérdezések követésének "
"támogatására, ajánlott: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL-lekérdezések követésének táblája"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7394,11 +7464,11 @@ msgstr ""
"A követési mechanizmus automatikusan készítsen-e verziót a táblákhoz és a "
"nézetekhez."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Verziók automatikus létrehozása"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7406,11 +7476,11 @@ msgstr ""
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
"adatbázisban, ajánlott: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Felhasználók beállításainak tárolótáblája"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7420,11 +7490,11 @@ msgstr ""
"menük szolgáltatás engedélyezéséhez. Az egyikük üresen hagyása le fogja "
"tiltani ezt a szolgáltatást, ajánlott: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Felhasználók tábla"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7434,11 +7504,11 @@ msgstr ""
"szolgáltatás engedélyezéséhez. Az egyikük üresen hagyása le fogja tiltani "
"ezt a szolgáltatást, ajánlott: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Felhasználói csoport tábla"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7446,15 +7516,15 @@ msgstr ""
"Hagyja üresen, ha nincs szükség a navigációs elemek megjelenítése/elrejtése "
"lehetőségre, ajánlott: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Rejtett navigációs elemek tábla"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "A konfigurációs hitelesítés felhasználóneve"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7462,21 +7532,21 @@ msgstr ""
"A kiszolgáló felhasználóbarát leírása. Hagyja üresen az állomásnév "
"megjelenítéséhez."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "A kiszolgáló részletes neve"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Meg kell-e jeleníteni egy felhasználó számára az \"összes (sor) megjelenítése"
"\" gombot."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Az összes sor megjelenítésének engedélyezése"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7486,57 +7556,57 @@ msgstr ""
"hitelesítési módra, mert a jelszót a konfigurációs fájl tartalmazza, ami "
"közvetlenül nem korlátozza ugyanazon parancs végrehajtásának a lehetőségét."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "A jelszómódosító űrlap megjelenítése"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Az adatbázis létrehozása űrlap megjelenítése"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"A megjegyzéseket megjelenítő oszlop megjelenítése vagy elrejtése minden "
"táblánál."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr "Tábla megjegyzéseinek megjelenítése"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"A létrehozás időbélyegét megjelenítő oszlop megjelenítése vagy elrejtése "
"minden táblánál."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Létrehozás időbélyegének megjelenítése"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"A legutóbbi frissítés időbélyegét megjelenítő oszlop megjelenítése vagy "
"elrejtése minden táblánál."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Legutóbbi változás időbélyegének megjelenítése"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"A legutóbbi ellenőrzés időbélyegét megjelenítő oszlop megjelenítése vagy "
"elrejtése minden táblánál."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Utolsó ellenőrzés időbélyegének megjelenítése"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7544,27 +7614,27 @@ msgstr ""
"Megadja, hogy a típusmezők kezdetben megjelenjenek-e a szerkesztés/beszúró "
"módban."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Mezőtípusok megjelenítése"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "A függvénymezők megjelenítése szerkesztés/beszúrás módban."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "A függvénymezők megjelenítése"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Jelenjen-e meg javaslat vagy sem."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Segítség megjelenítése"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7572,58 +7642,58 @@ msgstr ""
"Megjeleníti a [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"kimenetre mutató hivatkozást."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "A phpinfo() hivatkozás megjelenítése"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Részletes MySQL kiszolgáló információk megjelenítése"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Meghatározza, hogy meg kell-e jeleníteni a phpMyAdmin által előállított SQL-"
"lekérdezéseket."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Az SQL-lekérdezések megjelenítése"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Meghatározza, hogy a lekérdezés doboz a képernyőn maradjon-e az űrlap "
"elküldése után."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Lekérdezési doboz megőrzése"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Adatbázis- és táblastatisztika megjelenítésének engedélyezése (például "
"tárhelyhasználat)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "A statisztika megjelenítése"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"A használt táblák megjelölése, és a zárolt táblákat tartalmazó adatbázisok "
"megjelenítésének lehetővé tétele."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "A zárolt táblák kihagyása"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7631,11 +7701,11 @@ msgstr ""
"Az alapértelmezett figyelmeztetés letiltása, amely a főoldalon jelenik meg, "
"ha Suhosin észlelhető."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin figyelmeztetés"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7645,11 +7715,11 @@ msgstr ""
"session.gc_maxlifetime PHP beállítás értéke kisebb a „LoginCookieValidity” "
"értékénél."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Bejelentkezési cookie érvényesség figyelmeztetés"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7657,11 +7727,11 @@ msgstr ""
"Szövegdoboz méret (oszlop) szerkesztés módban, ez az érték lesz kiemelve az "
"SQL-lekérdezés szövegdobozainál (*2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Szövegdoboz oszlopai"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7669,31 +7739,31 @@ msgstr ""
"Szövegdoboz méret (sor) szerkesztés módban, ez az érték lesz kiemelve az SQL-"
"lekérdezés szövegdobozainál (*2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Szövegdoboz sorai"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "A böngészőablak címe, amikor egy adatbázis ki van választva."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "A böngészőablak címe, amikor semmi sincs kiválasztva."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Alapértelmezett cím"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "A böngészőablak címe, amikor egy kiszolgáló ki van választva."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "A böngészőablak címe, amikor egy tábla ki van választva."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7705,28 +7775,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) fejlécben:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "A megbízható proxyk listája az IP engedélyezéshez/elutasításhoz"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
"A kiszolgálón lévő könyvtár, ahová fájlokat tölthet fel az importáláshoz."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Feltöltési könyvtár"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "A teljes adatbázison belüli keresés engedélyezése."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Adatbázis-kereső használata"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7734,26 +7804,26 @@ msgstr ""
"Ha le van tiltva, a felhasználók semmit nem állíthatnak be az alábbi "
"lehetőségek közül, függetlenül a jobboldalon lévő jelölőnégyzettől."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Fejlesztő fül engedélyezése a beállításokban"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Új verzió ellenőrzése"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "A legújabb verzió ellenőrzését engedélyezi a phpMyAdmin főoldalán."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Verzió-ellenőrzés"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7765,11 +7835,11 @@ msgstr ""
"telepítést tartalmazó kiszolgálónak nincs közvetlen internetelérése. A "
"formátum: „gépnév:portszám”."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Proxy URL"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7779,19 +7849,19 @@ msgstr ""
"nincs hitelesítés. Ha egy felhasználónév adott, alapfokú hitelesítés "
"történik. Jelenleg nincs más típusú hitelesítés támogatva."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Proxy felhasználónév"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "A jelszó a proxyval való hitelesítéshez."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Proxy jelszó"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7799,36 +7869,36 @@ msgstr ""
"A [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tömörítés "
"engedélyezése az importálás és exportálás műveletekhez."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Adja meg a nyilvános kulcsát a tartomány reCaptcha szolgáltatásához."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "reCaptcha nyilvános kulcsa"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Adja meg a személyes kulcsát a tartomány reCaptcha szolgáltatásához."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "reCaptcha privát kulcsa"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
"Válassza ki az alapértelmezett műveletet, amikor hibajelentéseket küld."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Hibajelentések küldése"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7836,11 +7906,11 @@ msgstr ""
"A lekérdezések az Enter lenyomásával (a Ctrl+Enter helyett) lesznek "
"végrehajtva. Új sorok a Shift+Enter használatával kerülnek beszúrásra."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Az Enter a parancssorban hajtja végre a lekérdezéseket"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7848,7 +7918,7 @@ msgstr ""
"Zéró beállítási mód engedélyezése, amely lehetővé teszi a phpMyAdmin "
"beállítástároló táblák automatikus beállítását."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Zéró beállítási mód engedélyezése"
@@ -7873,44 +7943,44 @@ msgstr "HTTP hitelesítés"
msgid "Signon authentication"
msgstr "Signon hitelesítés"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV a LOAD DATA használatával"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Open Document munkafüzet"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Gyors"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Egyedi"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Adatbázis exportálási beállításai"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "MS Excel CSV adat"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Open Document szöveges dokumentum"
@@ -7941,7 +8011,7 @@ msgstr ""
"A mysql kiterjesztést használja, amely elavult a phpMyAdmin programban. "
"Fontolja meg a mysqli kiterjesztés telepítését."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr "Nem sikerült betölteni a séma bővítményeket, ellenőrizze a telepítést!"
@@ -8006,7 +8076,7 @@ msgstr "Tábla létrehozása"
msgid "Number of columns"
msgstr "Oszlopok száma"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Nem lehetett betölteni az exportáló beépülő modulokat. Kérjük, ellenőrizze a "
@@ -8051,11 +8121,11 @@ msgstr "Táblá(k):"
msgid "Format:"
msgstr "Formátum:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Formátum specifikus opciók:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8063,52 +8133,52 @@ msgstr ""
"Görgessen lefelé, hogy kitöltse a kijelölt formátumhoz tartozó beállításokat "
"és hogy figyelmen kívül hagyja a más formátumokhoz tartozó beállításokat."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Karakterkódolás-átalakítás:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Sorok:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Néhány sor kiírása"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Ettől a sortól kezdve:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Összes sor kiírása"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Kimenet:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Mentés a kiszolgáló %s könyvtárába"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Fájlnévsablon:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ lesz a kiszolgáló neve"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ lesz az adatbázis neve"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ lesz a tábla neve"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8120,64 +8190,74 @@ msgstr ""
"átalakításokra kerül sor: %3$s. Más szöveg eredeti állapotában kerül "
"megtartásra. Tekintse meg a %4$sFAQ%5$s oldalt a részletekért."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "használja ezt a későbbi exportálásokhoz"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "A fájl karakterkészlete:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Tömörítés:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zip-elve"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzip-elve"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "A kimenet megtekintése szövegként"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Adatbázisok exportálása különálló fájlokként"
+
+#: libraries/display_export.lib.php:662
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Táblák exportálása különálló fájlokként"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Az exportált adatbázisok / táblák / oszlopok átnevezése"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "A kimenet mentése fájlként"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Táblák kihagyása, amelyek nagyobbak mint"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Adatbázis kiválasztása"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Tábla kiválasztása"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Új adatbázis neve"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Új tábla neve"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Régi oszlopnév"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Új oszlopnév"
@@ -8806,7 +8886,7 @@ msgid "Create an index on %s columns"
msgstr "Index készítése a(z) %s oszlopokon"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Elrejtés"
@@ -8940,11 +9020,6 @@ msgstr "Ettől"
msgid "To"
msgstr "Eddig"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Indítás"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Tábla előtag hozzáadása:"
@@ -9157,22 +9232,27 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Hiba történt a navigációs képernyő betöltése közben"
#: libraries/navigation/Navigation.class.php:192
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Csoportok:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Események:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Függvények:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Eljárások:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tábla:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Nézetek:"
@@ -9196,7 +9276,7 @@ msgstr "Navigációs panel beállításai"
msgid "Reload navigation panel"
msgstr "Navigációs panel újratöltése"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9205,27 +9285,27 @@ msgstr ""
"teljesítményre. Fontolja meg az elemcsoportosítás letiltását a navigációs "
"panelen."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s eredmény található"
msgstr[1] "%s eredmény található"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Adatbázisok szűrése név vagy reguláris kifejezés szerint"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Gyors szűrő törlése"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Szűrés név vagy reguláris kifejezés szerint"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Összes összecsukása"
@@ -9259,7 +9339,7 @@ msgstr "új"
msgid "Database operations"
msgstr "Adatbázis műveletek"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Rejtett elemek megjelenítése"
@@ -10489,13 +10569,13 @@ msgstr "Oszlopnevek: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "A CSV importálás paramétere érvénytelen: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10504,13 +10584,13 @@ msgstr ""
"Érvénytelen oszlop (%s) van megadva! Győződjön meg arról, hogy oszlopok "
"nevét helyesen írta, vesszővel lett elválasztva, nem idézőjellel."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "A CSV bevitel %d. sorában a formázás érvénytelen."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Érvénytelen oszlopszám a CSV bemenet %d. sorában."
@@ -10908,47 +10988,47 @@ msgstr "JSON-ként formázza a szöveget szintaxis kiemeléssel."
msgid "Formats text as XML with syntax highlighting."
msgstr "XML-ként formázza a szöveget szintaxis kiemeléssel."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Hiba: A kapcsolat már létezik."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Az IDEGEN KULCS kapcsolat hozzáadása megtörtént."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Hiba: nem sikerült hozzáadni az IDEGEN KULCS kapcsolatot!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Hiba: hiányzó index az oszlopokról."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Hiba: a relációs szolgáltatások le vannak tiltva!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "A belső kapcsolat hozzáadása megtörtént."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Hiba: nem sikerült hozzáadni a belső kapcsolatot!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Az IDEGEN KULCS kapcsolat eltávolítása megtörtént."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Hiba: nem sikerült eltávolítani az IDEGEN KULCS kapcsolatot!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Hiba: nem sikerült eltávolítani a belső kapcsolatot!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "A belső kapcsolat eltávolítása megtörtént."
@@ -11035,22 +11115,27 @@ msgstr "Példa szerinti lekérdezés (QBE) keresések mentése"
msgid "Managing Central list of columns"
msgstr "Oszlopok központi listájának kezelése"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Emlékezzen a tervező beállításaira"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Gyors lépések a haladó funkciók beállításához:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Hozza létre a szükséges táblákat a %screate_tables.sql fájllal."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
"Hozzon létre egy pma felhasználót és adjon hozzáférést ezekhez a táblákhoz."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11058,16 +11143,16 @@ msgstr ""
"Engedélyezze a haladó funkciókat a beállító fájlban (config.inc.php"
"code>), például induljon ki a config.sample.inc.php fájlból."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Jelentkezzen be újra a phpMyAdminba a frissített beállítófájl betöltéséhez."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "nincs leírás"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
@@ -11077,7 +11162,7 @@ msgstr ""
"adatbázis létrehozásához. El kellene mennie bármelyik adatbázis „Műveletek” "
"lapjára, hogy ott beállítsa a phpMyAdmin beállítástárolóját."
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -11086,13 +11171,13 @@ msgstr ""
"%sHozzon létre%s egy „phpmyadmin” nevű adatbázist, és állítsa be ott a "
"phpMyAdmin beállítástárolóját."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "A phpMyAdmin beállítástároló %slétrehozása%s a jelenlegi adatbázisban."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr "Hiányzó phpMyAdmin beállítástároló táblák %slétrehozása%s."
@@ -11841,7 +11926,7 @@ msgstr "Nincsen megjeleníthető esemény."
msgid "Ignoring unsupported language code."
msgstr "Nem támogatott nyelvi kód mellőzése."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Jelenlegi kiszolgáló:"
@@ -13683,9 +13768,6 @@ msgstr "Megjelenítés PHP kódként"
#: libraries/sql.lib.php:1767
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
@@ -13695,9 +13777,6 @@ msgstr ""
#: libraries/sql.lib.php:1778
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, Edit, Copy "
"and Delete features may result in undesired behavior. %s"
@@ -16625,9 +16704,6 @@ msgstr "A concurrent_insert 0-ra van állítva"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Tábla nyomkövetési adatainak törlése"
-#~ msgid "Show versions"
-#~ msgstr "Verziók megjelenítése"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -17831,9 +17907,6 @@ msgstr "A concurrent_insert 0-ra van állítva"
#~ msgid "Reset"
#~ msgstr "Törlés"
-#~ msgid "Show processes"
-#~ msgstr "Folyamatok megjelenítése"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Törlés"
diff --git a/po/hy.po b/po/hy.po
index c7b1a6e1ca..0f28c66121 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-11-14 19:09+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Ցույց տալ բոլորը"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select All"
msgid "Select database first"
msgstr "Նշել բոլորը"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Ցուցադրել վահանակը"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Inside tables:"
msgid "Show hidden navigation tree items."
msgstr "Աղյուսակներ՝"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Table"
msgid "tables"
msgstr "Աղյուսակ"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Ներկայացում"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Action"
msgid "functions"
msgstr "Գործողություն"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2409,441 +2452,441 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr ""
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr ""
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr ""
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr ""
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr ""
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr ""
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr ""
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr ""
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr ""
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr ""
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr ""
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr ""
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr ""
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Select All"
msgid "Please enter a valid date"
msgstr "Նշել բոլորը"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2914,16 +2957,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2942,7 +2985,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3140,7 +3183,7 @@ msgid "Count:"
msgstr "Սյուն"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3347,25 +3390,25 @@ msgstr "Հեռացնել"
msgid "Delete bookmark"
msgstr "Հեռացնել"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3438,6 +3481,16 @@ msgstr "Բառերն առանձնացվում են (« »)։"
msgid "Inside tables:"
msgstr "Աղյուսակներ՝"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Նշել բոլորը"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Հանել նշումը"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Սյուներ՝"
@@ -3493,7 +3546,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3791,7 +3844,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3802,34 +3855,13 @@ msgstr ""
msgid "View"
msgstr "Ներկայացում"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -3924,8 +3956,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -4028,7 +4060,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Inside tables:"
msgid "Favorite tables"
@@ -4101,16 +4133,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4617,7 +4639,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4634,7 +4656,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4749,17 +4771,6 @@ msgstr "Օգտագործել այս արժեքը"
msgid "Rows"
msgstr "Տողեր"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4921,7 +4932,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4929,24 +4940,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5176,7 +5187,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5571,7 +5582,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5580,7 +5591,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5607,15 +5618,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5631,14 +5642,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5708,7 +5719,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5725,8 +5736,8 @@ msgstr "Ավելացնել AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5841,15 +5852,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5877,7 +5888,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5924,343 +5935,355 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Table comments"
+msgid "Navigation tree"
+msgstr "Աղյուսակի մեկնաբանությունը"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Inside tables:"
+msgid "Customize the navigation tree."
+msgstr "Աղյուսակներ՝"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Table comments"
msgid "Tables display options."
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6268,1076 +6291,1128 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Inside tables:"
msgid "Show databases navigation as tree"
msgstr "Աղյուսակներ՝"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Table comments"
msgid "Show logo in navigation panel."
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table comments"
msgid "Enable navigation tree expansion"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Inside tables:"
+msgid "Show tables in tree"
+msgstr "Աղյուսակներ՝"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr ""
+#, fuzzy
+#| msgid "Inside tables:"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Աղյուսակներ՝"
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr ""
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Inside tables:"
+msgid "Show views in tree"
+msgstr "Աղյուսակներ՝"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr ""
+#, fuzzy
+#| msgid "Inside tables:"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Աղյուսակներ՝"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
#, fuzzy
+#| msgid "Inside tables:"
+msgid "Show events in tree"
+msgstr "Աղյուսակներ՝"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Inside tables:"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Աղյուսակներ՝"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Inside tables:"
msgid "Favorites table"
msgstr "Աղյուսակներ՝"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Օգտագործել աղյուսակներ"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7345,52 +7420,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7398,80 +7473,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7495,44 +7570,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7561,7 +7636,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7628,7 +7703,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7671,62 +7746,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7734,72 +7809,80 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "Նշել բոլորը"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "Նշել բոլորը"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "The database name is empty!"
msgid "New database name"
msgstr "Տվյալների բազայի անունն նշված չէ"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "Inside tables:"
msgid "New table name"
msgstr "Աղյուսակներ՝"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8353,7 +8436,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8489,11 +8572,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8706,26 +8784,30 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
+msgid "Events:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Action"
msgid "Functions:"
msgstr "Գործողություն"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr ""
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Table"
msgid "Tables:"
msgstr "Աղյուսակ"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -8755,37 +8837,37 @@ msgstr "Աղյուսակի մեկնաբանությունը"
msgid "Reload navigation panel"
msgstr "Աղյուսակի մեկնաբանությունը"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "The database name is empty!"
msgid "Filter databases by name or regex"
msgstr "Տվյալների բազայի անունն նշված չէ"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "The database name is empty!"
msgid "Filter by name or regex"
msgstr "Տվյալների բազայի անունն նշված չէ"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8821,7 +8903,7 @@ msgstr ""
msgid "Database operations"
msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Inside tables:"
msgid "Show hidden items"
@@ -10004,26 +10086,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10361,55 +10443,55 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "Internal relation has been added."
msgstr "%s աղյուսակն դատարկված է"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "Error: Internal relation could not be added!"
msgstr "%s աղյուսակն դատարկված է"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "FOREIGN KEY relation has been removed."
msgstr "%s աղյուսակն դատարկված է"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "Error: Internal relation could not be removed!"
msgstr "%s աղյուսակն դատարկված է"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "Internal relation has been removed."
@@ -10498,54 +10580,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11261,7 +11347,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/ia.po b/po/ia.po
index a0074bf430..f130327b59 100644
--- a/po/ia.po
+++ b/po/ia.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-22 22:26+0200\n"
"Last-Translator: Giovanni Sora
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2327,28 +2370,28 @@ msgstr ""
"per) o pro commutar inter ASC/DESC.
- Ctrl+Clickr o Alt+Click (Mac: "
"Shift+Option+Click) pro remover columna ab le clausula de ORDER BY"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Pulsa pro seliger/deseliger."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Duple pulsa pro copiar le nomine de columna."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr ""
"Pulsa sur le flecha de disrolar
pro commutar le visibilitate del "
"columna."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Monstra omnes"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2357,13 +2400,13 @@ msgstr ""
"modificar, copiar, marcar, deler le grillia poterea non functionar post "
"salveguardar."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Pro favor, tu inserta in valide catena hexadecimal. Characteres valide es "
"0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2371,136 +2414,136 @@ msgstr ""
"Vermente tu vole vider omne rangos? Pro un grande tabella isto poterea vader "
"in crash le navigator."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Fortia original"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "cancella"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Abortate"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Successo"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Importa stato"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Depone files hic"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Prime selige un base de datos"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Tu pote anque modificar plure de valores
per duple pulsar directemente "
"super illos."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Tu anque pote modificar plure de valores
per pulsar directemente super "
"illos."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Vade al ligamine:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Copia nomine de columna."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Pulsa a dextere le nomine de columna pro copiar lo in tu tabuliero de "
"systema."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Genera contrasigno"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Cambia contrasigno"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Altere"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Monstra pannello"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Cela pannello"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Monstra elementos de arbore de navigation celate."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Ligamine con pannello principal"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Leva ligamine ex pannello principal"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Pro filtrar omne base de datos sur le servitor, pressa Enter postea un "
"termino de cerca"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Pro filtrar omne %s base de datos, pressa Enter postea un termino de cerca"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "tabellas"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "vistas"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "proceduras"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "eventos"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "functiones"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"Il non trovava le pagina requirite in le chronologia, il poterea esser "
"expirate."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2510,28 +2553,28 @@ msgstr ""
"actualisation. Le version plus nove e %s, liverate le %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", ultime version stabile:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "actualisate"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Crea vista"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Invia reporto de error"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Submitte reporto de error"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2539,15 +2582,15 @@ msgstr ""
"Un error fatal de JavaScript ha occurrite. Tu vole inviar un reporto de "
"error?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Modifica preferentias de reporto"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Monstra detalios de reporto"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2555,7 +2598,7 @@ msgstr ""
"Tu exportation es incomplete, debite a un basse limite de tempore de "
"execution al nivello de PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2565,60 +2608,60 @@ msgstr ""
"alcun del campos poterea esser ignorate, debite al configuration de "
"max_input_vars de PHP."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Alcun errores ha essite relevate sur le servitor!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Pro favor tu al basso de iste fenestra."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignora Omne"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"A proposito de tu preferentias, illos es preste pro esser submittite "
"currentemente, pro favor tu es patiente."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Executa novemente iste query?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Tu es vermente secur que tu vole deler iste marcator de libro?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "%s queries executate %s vices in %s secundas."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Monstra argumentos"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Cela argumentos"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2629,331 +2672,331 @@ msgstr ""
"propriemente pro te. In Safari, tal problema es communmente causate per "
"\"Private Mode Browsing (Modo de navigation private)\"."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Mense previe"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Mense proxime"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Hodie"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Januario"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Februario"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Martio"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "April"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Maio"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Junio"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Julio"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Augusto"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Septembre"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Octobre"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Novembre"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Decembre"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Dominica"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Lunedi"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Martedi"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Mercuridi"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Jovedi"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Venerdi"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sabbato"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Jov"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Jo"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Sept"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendario-mense-anno"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "necun"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Secunda"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Iste campo es requirite"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Pro favor corrige iste campo"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Pro favor inserta un valide adresse de e-posta"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Pro favor inserta un valide URL"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Pro favor inserta un valide data"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Pro favor inserta un nomine valide data (ISO)"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Pro favor inserta un numero valide"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Pro favor inserta un numero valide de carta de credito"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Pro favor inserta solmente digitos"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Pro favor inserta novemente le mesme valor"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Pro favor inserta plus que {0} characteres"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Pro favor inserta al minus {0} characteres"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Pro favor inserta un valor de longor de characteres inter {0} e {1}"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Pro favor inserta un valor inter {0} e {1}"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Pro favor inserta un valor minor o equal a {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Pro favor inserta un major o equal a {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Pro favor inserta un data o tempore valide"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Pro favor inserta un valide ingresso HEX"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3028,18 +3071,18 @@ msgstr "per hora"
msgid "per day"
msgstr "per die"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Le file de configuration existente (%s) non es legibile."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Permissiones incorrecte sur le file de configuration, il non deberea esser "
"scribibile per omnes!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Grandor de font"
@@ -3058,7 +3101,7 @@ msgid "Requery"
msgstr "Repite Query"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3188,17 +3231,14 @@ msgid "Press Enter to execute query"
msgstr "Pressa Enter pro executar query"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "ascendente"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "descendente"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Ordine:"
@@ -3207,7 +3247,6 @@ msgid "Count"
msgstr "Computo"
#: libraries/Console.class.php:292
-#| msgid "Execute"
msgid "Execution order"
msgstr "Ordine de executar"
@@ -3216,7 +3255,6 @@ msgid "Time taken"
msgstr ""
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Ordine per:"
@@ -3241,7 +3279,7 @@ msgid "Count:"
msgstr "Computo:"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3414,7 +3452,7 @@ msgstr "Actualisa marcator de libro"
msgid "Delete bookmark"
msgstr "Dele marcator de libro"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3422,21 +3460,21 @@ msgstr ""
"Le servitor non es respondente (o le socket del servitor local non es "
"configurate correctemente)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Le servitor non es respondente."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
"Pro favor, controla le permissiones del directorio continente le base de "
"datos."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detalios…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connexion per usatores de controlo de usator (controluser) falleva como in "
@@ -3512,6 +3550,16 @@ msgstr "Parolas es separate per un character de spatio (\" \")."
msgid "Inside tables:"
msgstr "Intra tabulas:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Selige Toto"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Deselige toto"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Intra columna:"
@@ -3565,7 +3613,7 @@ msgid "All"
msgstr "Omnes"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Numero de rangos:"
@@ -3865,7 +3913,7 @@ msgstr ""
"removite."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Servitor"
@@ -3876,34 +3924,13 @@ msgstr "Servitor"
msgid "View"
msgstr "Vista"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Structura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3998,8 +4025,8 @@ msgstr "Columnas central"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Base de datos"
@@ -4102,7 +4129,7 @@ msgid "Recent"
msgstr "Recente"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Tabellas favorite"
@@ -4172,16 +4199,6 @@ msgstr "Juncturas"
msgid "Sorting"
msgstr "Ordinante"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabellas"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Coordinator de transactiones"
@@ -4756,7 +4773,7 @@ msgstr "Dimension maxime: %s%s"
msgid "MySQL said: "
msgstr "Message de MySQL: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Explica SQL"
@@ -4773,7 +4790,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Sin codice PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Crea codice PHP"
@@ -4889,17 +4906,6 @@ msgstr "Usa iste valor"
msgid "Rows"
msgstr "Rangos"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Datos"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5065,7 +5071,7 @@ msgstr "Servitor %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Methodo de authentication invalide fixate in le configuration:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5077,24 +5083,24 @@ msgstr ""
"['SessionTimeZone'][/em]. phpMyAdmin es currentemente usante le fuso horari "
"predefinite de servitor de base de datos."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Tu deberea actualisar a version %s%s o successive."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Error: error de correspondentia in le indicio (token mismatch)"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "Tentativa de superscriber GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "possibile exploit"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "clave numeric discoperite"
@@ -5320,7 +5326,7 @@ msgid "Set value: %s"
msgstr "Fixa valor: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Restabili valor predefinite"
@@ -5800,7 +5806,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Maxime tempore de execution"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "Usa le instruction %s"
@@ -5809,7 +5815,7 @@ msgstr "Usa le instruction %s"
msgid "Save as file"
msgstr "Salveguarda como file"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Insimul de characteres del file"
@@ -5836,15 +5842,15 @@ msgstr "Compression"
msgid "Put columns names in the first row"
msgstr "Mitte nomines de columnas in le prime rango"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Columnas includite per"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Columnas prefixate per"
@@ -5860,14 +5866,14 @@ msgstr "Reimplacia NULL con"
msgid "Remove CRLF characters within columns"
msgstr "Remove characteres de CRLF intra columnas"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Columnas terminate per"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Rangos terminate per"
@@ -5937,7 +5943,7 @@ msgid "Save on server"
msgstr "Salveguarda sur le servitor"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Superscribe file(s) existente"
@@ -5954,8 +5960,8 @@ msgstr "Adde valor de AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Include nomines de tabellas e columnas con virgulettas"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Modo de compatibilitate de SQL"
@@ -6071,15 +6077,15 @@ msgid "Customize browse mode."
msgstr "Personalisa modo de navigation."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Personalisa optiones predefinite."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6107,7 +6113,7 @@ msgstr "Exporta le valores predefinite"
msgid "Customize default export options."
msgstr "Personalisa le optiones de exportar predefinite."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Characteristicas"
@@ -6152,40 +6158,52 @@ msgstr "Pannello de navigation"
msgid "Customize appearance of the navigation panel."
msgstr "Personalisa apparentia del pannello de navigation."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Pannello de navigation"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Personalisa pannello de navigation"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Servitores"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Optiones pro monstrar servitores."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Optiones pro monstrar tabellas."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Pannello principal"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Altere preferentias principal"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Altere preferentias que on non pote poner in altere loco."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Titulos de pagina"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6194,11 +6212,11 @@ msgstr ""
"[doc@faq6-27]documentation[/doc] pro vider catenas que on pote utilisar pro "
"obtener valores special (magic strings)."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Securitate"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6206,23 +6224,23 @@ msgstr ""
"Pro favor tu nota que phpMyAdmin es solo un interfacie e su characteristicas "
"non limita MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Preferentias basic"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Authentication"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Preferentias de authentication."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Configuration del servitor"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6230,15 +6248,15 @@ msgstr ""
"Configuration avantiate de servitor, non modificar iste optiones a minus que "
"tu sape lo que illos face."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Inserta parametros de connexion del servitor."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Immagazinage de configuration"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6248,11 +6266,11 @@ msgstr ""
"characteristicas additional, tu vide [doc@linked-tables]phpMyAdmin "
"configuration storage[/doc] in documentation."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Traciamento de modificationes"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6260,111 +6278,111 @@ msgstr ""
"Traciamento de modificationes facite in le base de datos. Isto require "
"immagazinage de configuration de phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Personalisa optiones de exportar"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Personalisa optiones predefinite de importar"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Personalisa pannello de navigation"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Personalisa pannello principal"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Queries de SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Quadro de Query de SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Personalisa ligamines monstrate in le quadros de Query de SQL."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Preferentias de queries de SQL."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Initiar"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Personalisa le pagina de initiar."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Structura de base de datos"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Selige qual detalios monstrar in le structura de base de datos (lista de "
"tabellas)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Structura de tabella"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Preferentias del structura de tabella (lista de columnas)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Schedas"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Selige como tu vole que le schedas functiona."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Monstra le schema relational"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Grandor de papiro"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Campos de texto"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Personalisa le campos de ingresso de texto."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! texto"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Personalisa optiones predefinite"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Avisos"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Dishabilita alcun avisos monstrate per phpMyAdmin."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6372,15 +6390,15 @@ msgstr ""
"Il habilita le compression [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] "
"per operationes de importation e exportation."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Parametros extra pro iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6388,11 +6406,11 @@ msgstr ""
"Si habilitate, phpMyAdmin continua computar queries de instruction-multiple "
"anque si un query es fallente."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignora errores de instruction multiple"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6402,25 +6420,25 @@ msgstr ""
"al limite de tempore. Isto poterea esser un bon modo pro importar files "
"grande, totevia il pote interrumper transactiones."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Importation partial: permitte interruption"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Non aborta quando on ha un error de INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6428,69 +6446,69 @@ msgstr ""
"Formato predefinite, tu nota que iste lista depende del location (base de "
"datos, tabella) e solmente SQL es sempre disponibile."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Formato del file importate"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Usa parola clave LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Nomines de columna in le prime rango"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Non importa rangos vacue"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importa numerarios ($5.00 a 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importa percentages como proprie decimales (2.00% a .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Numero de queries de saltar ab initio."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Importation partial: salta queries"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Non usa AUTO_INCREMENT pro le valor zero"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Stato initial pro glissatores"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Quante rangos on debe insertar in un vice."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Numero de rangos insertate"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Numero maxime de characteres monstrate in omne columna non numeric sur le "
"vista de navigar."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Limita characteres de columna"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6501,11 +6519,11 @@ msgstr ""
"servitor currente, Si on fixa isto a FALSE il es facile oblidar de abandonar "
"(logout) altere servitores quando on connecte a servitores multiple."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Dele omne cookies quando on exi (logout)"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6513,11 +6531,11 @@ msgstr ""
"Defini si le previe session de authentication deberea esser restaurate o non "
"quando in modo de authentication de [kbd]cookie[/kbd]."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Recorda nomine de usator"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6529,50 +6547,50 @@ msgstr ""
"essera delite quando tu claude le fenestra del navigator. Isto es "
"recommendate pro ambiente non digne de fide."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Memora cookie de authentication"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
"Defini quanto il debe esser longe (in secundas) le validitate de un cookie "
"de authentication."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Validitate de cookie de authentication de accesso"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Duple grandor de textarea (area de texto) pro columnas de LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Un area de texto plus grande pro LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Maxime numero de characteres usate quando on monstra un query de SQL."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Maxime longor monstrate de SQL"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Usatores non pote fixar un valor major"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Maxime numero de base de datos monstrate in le lista de base de datos."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Maxime numero de base de datos"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6580,11 +6598,11 @@ msgstr ""
"Le numero de elementos que on pote monstrar sur cata pagina super le prime "
"nivello del arbore de navigation."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Maxime elementos sur le prime nivello"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6592,11 +6610,11 @@ msgstr ""
"Le numero de elementos que on pote monstrar sur cata pagina del arbore de "
"navigation."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Maxime elementos in un ramo"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6605,19 +6623,19 @@ msgstr ""
"le insimul de exito contine plure rangos, ligamine de \"Previe\" e \"proxime"
"\" essera monstrate."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Le maxime numero de rangos de monstrar"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Maxime numero de tabellas monstrate in le lista de tabella."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Maxime numero de tabellas"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6625,43 +6643,43 @@ msgstr ""
"Fixa le numero de bytes pro le qual un script es permittite allocar "
"[kbd]32M[/kbd] ([kbd]0[/kbd] pro nulle limite)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Limite de memoria"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"In le pannello de navigation, reimplacia le arbore de base de datos con un "
"selector"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "monstra navigation de base de datos como arbore"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Ligamine con le pannello principal pro evidentiar le base de datos o tabella "
"currente."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Monstra logo in le pannello de navigation."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Monstra logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL ubi le logo in le pannello de navigation punctara."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL del ligamine de logo"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6669,28 +6687,28 @@ msgstr ""
"Aperi le pagina de ligamine in le fenestra principal ([kbd]main[/kbd]) o in "
"un nove ([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Objectivo de ligamine de logo"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
"Selection de servitor de monstrator al culmine del pannello de navigation."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Monstra selection d servitores"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Objectivo pro icone de accesso rapide"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Objectivo pro icone de secunde accesso rapide"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6698,17 +6716,17 @@ msgstr ""
"Define le minime numero de elementos (tabellas, vistas, routines e eventos) "
"de monstrar in le quadro de filtro."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Minime numero de elementos de monstrar in le quadro de filtro"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
"Le numero minime de base de datos pro monstrar le quadro de filtrar base de "
"datos"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6716,107 +6734,167 @@ msgstr ""
"Elementos de gruppo in le arbore de navigation (determinate per le separator "
"definite in le base de datos e schedas de tabellas de supra)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Elementos de gruppo in le arbore"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Catena que separa base de datos in nivellos differente de arbore."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Separator de arbore de base de datos"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Catena que separa tabellas in differente nivellos de arbore."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Separator de arbore de tabellas"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Maxime profunditate de arbore de tabellas"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Evidentia servitor sub le cursor del mus."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Habilita evidentiar"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"Si offerer le possibilitate de expansion de un arbore in le pannello de "
"navigation."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Habilita expansion de navigation de arbore"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr "Maxime numero de tabellas usate de recente;pone 0 pro dishabilitar lo."
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr "Maxime numero de tabellas favorite; pone 0 pro dishabilitar lo."
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Monstra/Cela lista de tabellas"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr "Tabellas usate recentemente"
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"Si offerer le possibilitate de expansion de un arbore in le pannello de "
+"navigation."
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr "Istos es le ligamines pro Modificar, Copiar e Deler."
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Group items in the tree"
+msgid "Show views in tree"
+msgstr "Elementos de gruppo in le arbore"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr "Ubi monstrar le ligamines de rango de tabellas"
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "monstra navigation de base de datos como arbore"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Monstra campos de function"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "procedures"
+msgid "Show procedures in tree"
+msgstr "proceduras"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show hidden items"
+msgid "Show events in tree"
+msgstr "Monstra elementos celate"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "monstra navigation de base de datos como arbore"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr "Maxime numero de tabellas usate de recente;pone 0 pro dishabilitar lo."
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr "Maxime numero de tabellas favorite; pone 0 pro dishabilitar lo."
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr "Tabellas usate recentemente"
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr "Istos es le ligamines pro Modificar, Copiar e Deler."
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr "Ubi monstrar le ligamines de rango de tabellas"
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
"Usa le ordine natural pro ordinar nomines de tabella e nomines de base de "
"datos."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Ordine natural"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Usa solo icones, solmente texto o ambes."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Barra de navigation de tabella"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Usa buffering de exito de GZip pro augmentar le velocitate in transferentias "
"de HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Buffering de exito de GZip"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6824,19 +6902,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. ordine descendente pro columnas de typo TIME, DATE, "
"DATETIME and TIMESTAMP, ordine ascendente in altere modo."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Modo de ordinar predefinite"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Usa connexiones persistente per base de datos de MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Connexiones persistente"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6846,11 +6924,11 @@ msgstr ""
"de detalios de base de datos si alcun del tabella requirite pro le "
"immagazinage de configuration de phpMyAdmin non poterea esser trovate."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabellas de immagazinage de configuration de phpMyAdmin es mancante"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6858,11 +6936,11 @@ msgstr ""
"Dishabilita le aviso predefinite que es monstrate si un differentia es "
"relevate inter le bibliotheca de MySQL e le servitor."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Aviso de differentia de Servitor/Bibliotheca"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6870,27 +6948,27 @@ msgstr ""
"Dishabilita le aviso predefinite que es monstrate sur le pagina de Structura "
"si le nomines de columna in un tabella es parolas reservate de MySQL."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Aviso de parola reservate de MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Como monstrar le schedas de menu"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Comom monstrar varie ligamines de action"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Leva le permission de columnas BLOB e BINARI pro esser modificate."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Protege columnas binari"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6901,107 +6979,107 @@ msgstr ""
"utilisa functiones JS pro monstrar le chronologia de query (perdite quando "
"on claude le fenestra)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Historia permanente de query"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Quante queries es mantenite in historia."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Longitude de historia de query"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Selige qual function on debe usar pro le conversion del insimul de "
"characteres."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Motor de recodificar"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Quando on naviga per tabellas, le ordine de cata tabella es memorate."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Memora ordine de tabellas"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "Modo de ordinar predefinite pro tabellas con un clave primari."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Modo de ordinar predefinite per le clave primari"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Repite le capites omne X cellas, [kbd]0[/kbd] deactiva iste characteristica."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Repite capites"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Action discatenante modifica de grillia"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Monstra de modo relational"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Optiones pro monstrar"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Modification de grillia: salveguarda omne cellas modificate in un vice"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Directorio ubi exportationes pote esser salveguardate sur le servitor."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Salveguarda dossier"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Lassa vacue si non usate."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Ordine de autorisation o permission de hospite"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Lassa vacue pro definition."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Regulas de autorisation o permission de hospite"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Permitte accessos sin un contrasigno"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Permitte accesso de nivello root (radice)"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Fuso horari de session"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7009,17 +7087,17 @@ msgstr ""
"Fixa le effective fuso horari; possibilemente differente de lo que on ha "
"sur tu servitor de base de datos"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Nomine de HTTP Basic Auth Realm (Dominio de auyhorisation basic de Http) "
"quando on face HTTP Auth."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "Sphera HTTP"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7029,19 +7107,19 @@ msgstr ""
"hardware authentication[/a] (non locate in tu radice de documento; "
"suggerite: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "File de configuration de SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Methodo de authentication de usar."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Typo de authentication"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7049,11 +7127,11 @@ msgstr ""
"Lassa vacue pro nulle [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
"a] supporto, suggerite: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Tabella de marcatores de libro"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7061,31 +7139,31 @@ msgstr ""
"Lassa vacue pro nulle commentos/typos mime de columna, proponite: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Tabella de information de columna"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Comprime connexion a servitor MySQL."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Comprime connexion"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Como connecter al servitor, mantene [kbd]tcp[/kbd] si non secur."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Typo de connexion"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Contrasigno de usator de controlo"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7094,11 +7172,11 @@ msgstr ""
"information disponibile sur [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Usator de controlo"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7106,11 +7184,11 @@ msgstr ""
"Un hospite alternative pro mantener le configuration de immagazinage: lassa "
"vacue pro usar un hopite ja definite."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Hospite de controlo"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7120,15 +7198,15 @@ msgstr ""
"de configuration; lassa vacue pro usar le porto predefinite, o un porto ja "
"definite, si le hospite de controlo equala se a le hospite."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Porto de controlo"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Cela base de datos coincidente con le expression regular (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7136,15 +7214,15 @@ msgstr ""
"Altere information in [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Dishabilita uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Cela base de datos"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7152,23 +7230,23 @@ msgstr ""
"Lassa vacue pro nulle supporto de historia de query SQL, proponite: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Tabella de chronologia de query de SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Nomine de hospite ubi le servitor de MySQL es executante."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Nomine de hospite servitor"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL de logout (abandono)"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7176,15 +7254,15 @@ msgstr ""
"Il limita le numero de preferentias de tabella que es immagazinate in le "
"base de datos, le registros plus vetere essera removite automaticamente."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Maxime numero de preferentias de immagazinar"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Tabella de cercas salveguardate de QBE"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7192,11 +7270,11 @@ msgstr ""
"Lassa vacue pro nulle supporto de cercas QBE salveguardate, proponite: "
"[kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Tabella central de columnas"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7204,15 +7282,15 @@ msgstr ""
"Lassa vacue pro necun supporto central de columnas, proponite: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Essaya connecter sin contrasigno."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Connecte sin contrasigno"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7222,30 +7300,30 @@ msgstr ""
"escape ante los si tu vole usar lor instantia litteral,i.e. usa [kbd]'my"
"\\_db'[/kbd] e non [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Monstra solmente base de datos ab le lista"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Lassa vacue si non es usante config auth."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Contrasigno pro config auth"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Lassa vacue pro nulle supporto de sche,a PDF, proponite: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "Schema PDF: tabella de paginas"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7256,22 +7334,22 @@ msgstr ""
"information complete. Lassa vacue pro nulle supporto. Suggerite: "
"[kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nomine de base de datos"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Porto sur le qual le servitor MySQL es ascoltante, lassa vacue pro le valor "
"predefinite."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Porto de servitor"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7279,11 +7357,11 @@ msgstr ""
"Lassa vacue pro necun \"persistente\" recentemente usava tabellas trans "
"sessiones, proponite: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Tabella usate recentemente"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7291,11 +7369,11 @@ msgstr ""
"Lassa vacue pro necun \"persistente\" tabellas favorite trans sessiones, "
"proponite: [kbd]pma__favorite[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Tabellas favorite"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7303,11 +7381,11 @@ msgstr ""
"Lassa vacue pro nulle [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] supporto, suggerite: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Tabella de relation"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7315,33 +7393,33 @@ msgstr ""
"Vide [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typos de "
"authentication[/a] pro un exemplo."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Nomine de session de signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "URL de signon"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Socket sur le qual le servitor MySQL es ascoltante, lassa vacue pro le valor "
"predefinite."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Socket del servitor"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Habilita SSL pro le connexion a servitor MySQL."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Usa SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7349,11 +7427,11 @@ msgstr ""
"Lassa vacue pro necun supporto de schema PDF, proponite: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Designator e Schema PDF: coordinatas de tabella"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7361,11 +7439,11 @@ msgstr ""
"Tabella pro describer le columnas de monstrar, lassa vacue pro nulle "
"supporto; suggerite: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Monstra tabella de columnas"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7373,11 +7451,11 @@ msgstr ""
"Lassa vacue pro necun preferentias de UI de tabellas \"persistente\" trans "
"sessiones, proponite: [kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Tabella de preferentias de UI (Interfacie usator)"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7385,11 +7463,11 @@ msgstr ""
"Si on adde un declaration DROP DATABASE IF EXISTS sur le prime rango del "
"registro quando on crea un base de datos."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Adde DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7397,11 +7475,11 @@ msgstr ""
"Si on adde un declaration DROP TABLE IF EXISTS sur le prime rango del "
"registro quando on crea un tabella."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Adde DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7409,21 +7487,21 @@ msgstr ""
"Si on adde un declaration DROP VIEW IF EXISTS sur le prime rango del "
"registro quando on crea un vista."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Adde DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Il defini le lista de declarationes que le auto-creation usa per nove "
"versiones."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Declarationes de traciar"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7431,11 +7509,11 @@ msgstr ""
"Lassa vacue pro necun supporto de traciar query SQL, proponite: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Tabella pro traciar le query SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7443,11 +7521,11 @@ msgstr ""
"Si le mechanismo de traciar crea automaticamente versiones pro tabellas e "
"vistas."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Crea automaticamente versiones"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7455,11 +7533,11 @@ msgstr ""
"Lassa vacue pro necun preferentias de usator per immagazinage in le base de "
"datos, proponite: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Tabella de immagazinage de preferentias de usator"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7470,11 +7548,11 @@ msgstr ""
"on lassa un de lor vacue on dishabilitara iste characteristica, suggerite: "
"[kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Tabula de usatores"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7485,11 +7563,11 @@ msgstr ""
"on lassa un de lor vacue on dishabilitara iste characteristica, suggerite: "
"[kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Tabella de gruppos de usator"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7497,15 +7575,15 @@ msgstr ""
"Lassa vacue pro dishabilitar characteristica de celar e monstrar elementos "
"de navigation, proponite: [kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Tabella de elementos de navigation celate"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Usator pro config auth"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7513,21 +7591,21 @@ msgstr ""
"Un description de uso facile pro le usator de iste servitor. Lassa vacue pro "
"monstrar , in loco, le nomine de hospite."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Nomine verbose de iste servitor"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
"Si un usator deberea esser monstrate como un button de \"monstra omne "
"(rangos)\"."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Permitte monstrar omne rangos"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7538,56 +7616,56 @@ msgstr ""
"fortemente in le file de configuration; isto non limita le habilitate de "
"executar directemente le mesme commando."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Monstra modulo de modification de contrasigno"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Monstra modulo pro crear base de datos"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Monstra o cela un columna monstrante le le commentos pro omne tabellas."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr "Monstra le commentos de tabella"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Monstra o cela un columna monstrante le marca de tempore de creation pro "
"omne tabellas."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Monstra marca de tempore de creation"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Monstra o cela un columna monstrante le marca de tempore de ultime "
"actualisation pro omne tabellas."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Monstra marca de tempore de ultime actualisation"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Monstra o cela un columna monstrante le marca de tempore de ultime verifica "
"pro omne tabellas."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Monstra marca de tempore de ultime verifica"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7595,27 +7673,27 @@ msgstr ""
"Il defini si o non campos de typo deberea esser monstrate initialmente in le "
"modo de modifica/inserta."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Monstra typos de campo"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "Monstra le campos de function in le modo de modifica/inserta."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Monstra campos de function"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Si monstrar o celar adjutas."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Monstra adjuta"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7623,56 +7701,56 @@ msgstr ""
"Monstra ligamine a exito [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a] ."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Monstra un ligamine a phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Monstra information detaliate del servitor MySQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Il defini si queries SQL generate per PhpMyAdmin deberea esser monstrate."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Monstra queries de SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Il defini si le quadro de query deberea star sur-schermo post su submission."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Cela quadro de query"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Permitte monstrar statisticas de base de datos e tabellas (pro exemplo uso "
"de spatio)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Monstra statisticas"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Marca tabellas usate e face possibile monstrar base de datos con tabellas "
"blocate."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Ignora tabellas blocate"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7680,11 +7758,11 @@ msgstr ""
"Dishabilita le aviso predefinite que es monstrate sur le pagina principal "
"si on releva Suhosin."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Aviso de Suhosin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7694,11 +7772,11 @@ msgstr ""
"le valor de le arrangiamento de PHP session.gc_maxlifetime es minor que le "
"valor de `LoginCookieValidity`."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Avis de validitate de cookie de authentication de accesso"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7706,11 +7784,11 @@ msgstr ""
"Grandor de area de texto (columnas) in modo de modifica, iste valor essera "
"evidentiate per areas de texto (*2) de query SQL.."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Columnas de area de texto"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7718,31 +7796,31 @@ msgstr ""
"Grandor de area de texto (rangos) in modo de modifica, iste valor essera "
"evidentiate per areas de texto (*2) de query SQL."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Rangos de area de texto"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Titulo de fenestra de navigation quando un base de datos es seligite."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Titulo de fenestra de navigation quando nihil es seligite."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Titulo predefinite"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Titulo del fenestra de navigation quando un servitor es seligite."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Titulo de fenestra de navigation quando un tabella es seligite."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7754,27 +7832,27 @@ msgstr ""
"(X-Forwarded-For) veniente ex le proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista de proxy digne de fide pro filtrar IP, accepta/refusa"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Directorio sur le servitor ubi tu pote incargar files de importar."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Directorio de incargar"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Permitte cerca intra le integre base de datos."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Usa cerca de base de datos"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7782,28 +7860,28 @@ msgstr ""
"Quando illo es dishabilitate, usatores non pote fixar alcun optiones a "
"basso, sin reguardo del quadrato de selection a dextera."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Habilita le scheda del Disveloppator in preferentias"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Verifica le ultime version"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Habilita le verifica del ultime version sur le pagina principal de "
"phpMyAdmin."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Verifica de version"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7815,11 +7893,11 @@ msgstr ""
"necessita illos si le servitor ubi phpMyAdmin es installate non ha accesso "
"directe a internet. Le formato es: \"nomine_de_hospite:numero_de_porto\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Url de proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7830,19 +7908,19 @@ msgstr ""
"le Authentication Basic. Necun altere typos de authentication nunc es "
"supportate."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Nomine de usator de proxy"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Le contrasigno per authenticar se con le proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Contrasigno de proxy"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7850,35 +7928,35 @@ msgstr ""
"Il habilita le compression [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] per operationes de importation e exportation."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Inserta tu clave public pro le dominio servicio de reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Clave public pro reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Inserta tu clave private pro tu servicio de dominio reCaptcha."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Clave private pro reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Selige le action predefinite quando on invia reportos de error."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Invia reportos de errores"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7886,11 +7964,11 @@ msgstr ""
"Queries es executate per pressar Enter (in loco de Ctrl+Enter). Nove lineas "
"essera insertate con Shift+Enter."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "Inserta queries de executar in console"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7898,7 +7976,7 @@ msgstr ""
"Habilita modo de Configuration Zero que te permitte configurar le "
"configuration de tabellas de immagazinage de phpMyAdmin automaticamente."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Habilita modo de Configuration Zero"
@@ -7924,44 +8002,44 @@ msgstr "Authentication via HTTP"
msgid "Signon authentication"
msgstr "Authentication via signon"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV usante LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Folio de computo (SpreadSheet) de OpenDocument"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Rapide"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Personalisate"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Optiones de exportation de base de datos"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV pro datos MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Texto OpenDocument"
@@ -7993,7 +8071,7 @@ msgstr ""
"Tu es usante le extension de mysql que es deprecate in phpMyAdmin. Pro favor "
"tu considera installar le extension mysqli."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
"Il non es possibile cargar plugins de schema, pro favor tu verifica tu "
@@ -8060,7 +8138,7 @@ msgstr "Crea tabella"
msgid "Number of columns"
msgstr "Numero de columnas"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Il non pote cargar plugins de exportar, pro favor verifica tu installation!"
@@ -8104,11 +8182,11 @@ msgstr "Tabella(s):"
msgid "Format:"
msgstr "Formato:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Optiones specific de formato:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8116,52 +8194,52 @@ msgstr ""
"Rola a basso pro completar le optiones pro le formato seligite e ignorar le "
"optiones pro altere formatos."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Conversion de codifica:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Rangos:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Executa le dump de alicun rango(s)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Rango de initiar a:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Le dump de omne rangos"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Exito:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Salveguarda sur servitor in le directorio %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Patrono de nomine de file:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ devenira le nomine de servitor"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ devenira le nomine de base de datos"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ devenira le nomine de tabella"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8173,64 +8251,76 @@ msgstr ""
"sequente transformationes: %3$s. Altere texto essera mantenite assi como il "
"es. Vide le %4$sFAQ%5$s pro detalios."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "usa isto pro exportationes futur"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Insimul de characteres de file:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Compression:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "comprimite per zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "comprimite per gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Vide exito como texto"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Exporta vistas como tabellas"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export tables as separate files"
+msgstr "Exporta vistas como tabellas"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Renomina base de datos/tabellas/columnas exportate"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Salveguarda exito in un file"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Salta tabellas plus grande que"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Selige un base de datos"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Selige tabella"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nomine de nove base de datos"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nomine de nove tabella"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Vetere nomine de columna"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nove nomine de columna"
@@ -8859,7 +8949,7 @@ msgid "Create an index on %s columns"
msgstr "Crea un indice sur %s columnas"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Cela"
@@ -8993,11 +9083,6 @@ msgstr "Ex"
msgid "To"
msgstr "A"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Invia"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Adde prefixo de tabella:"
@@ -9210,22 +9295,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "Un error ha occurrite quando on incargava le monstrator de navigation"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Nomine de gruppo:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Eventos:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Functiones:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procedimentos:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tabulas:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Vistas:"
@@ -9249,7 +9340,7 @@ msgstr "Preferentias de pannello de navigation"
msgid "Reload navigation panel"
msgstr "Recarga pannello de navigation"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9258,7 +9349,7 @@ msgstr ""
"influentiar le prestationes. Considera dishabilitar le gruppamento de "
"elementos in le pannello de navigation."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9269,20 +9360,20 @@ msgstr[1] ""
"Altere\n"
"%s resultatos trovate"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filtra base de datos per nomine o regex"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Netta filtro rapide"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtra per nomine o regex"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Plica toto"
@@ -9316,7 +9407,7 @@ msgstr "Nove"
msgid "Database operations"
msgstr "Operationes de base de datos"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Monstra elementos celate"
@@ -10517,26 +10608,26 @@ msgstr "Nomines de columna: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Parametro invalide per le importation de CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10865,49 +10956,49 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Error: le relation ja existe."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Relation de FOREIGN KEY ha essite addite."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
"Error: FOREIGN_KEY - clave extranee - relation non poteva esser addite!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Error: characteristicas relational es dishabilitate!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Relation interne ha essite addite."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Error: Relation interne non poteva esser addite!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Relation de FOREIGN KEY ha essite removite."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
"Error: FOREIGN KEY - clave extranee - relation non poteva esser removite!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Error: Relation non poteva esser removite!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Relation interne ha essite removite."
@@ -10992,41 +11083,47 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Memora ordine de tabellas"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "Crea le tabella necessari con le %screate_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -11035,7 +11132,7 @@ msgstr ""
"%sCreate%s un base de datos nominate 'phpmyadmin' e configura le "
"configuration de immagazinage de phpMyAdmin ci."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
@@ -11043,7 +11140,7 @@ msgstr ""
"%sCrea%s le immagazinage de configuration de phpMyAdmin in le base de datos "
"currente."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11762,7 +11859,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
@@ -13397,9 +13494,6 @@ msgstr ""
#: libraries/sql.lib.php:1767
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
@@ -13409,9 +13503,6 @@ msgstr ""
#: libraries/sql.lib.php:1778
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, Edit, Copy "
"and Delete features may result in undesired behavior. %s"
diff --git a/po/id.po b/po/id.po
index 919ab88a4d..9970adc971 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-17 06:05+0200\n"
"Last-Translator: Tommy Surbakti
- Kontrol+Klik atau Alt+Click (Mac: Shift+Option+Click) untuk "
"menghapus kolom dari ORDER BY clause"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Klik untuk menambahkan/menghapus tanda."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Klik dua kali untuk menyalin nama kolom."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Tampilkan semua"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2332,11 +2375,11 @@ msgstr ""
"grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja "
"setelah disimpan."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr "Masukkan string yang benar. Karakter yang benar adalah 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2344,135 +2387,135 @@ msgstr ""
"Apakah anda ingin melihat semua baris? Tabel ukuran besar bisa membuat "
"peramban lambat."
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "String asli"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "Batal"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Batalkan"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Sukses"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Impor status"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Letakkan berkas disini"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Pilih database dulu"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"Anda juga dapat mengedit sebagian nilai
dengan mengeklik langsung "
"konten."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"Anda juga dapat mengedit sebagian nilai
dengan mengeklik langsung "
"konten."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Pergi ke tautan:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Salin nama kolom."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Klik-kanan nama kolom untuk menyalinnya ke clipboard."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Buatkan kata sandi"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Buatkan"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Ubah Kata sandi"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Lainnya"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Tampilkan Panel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Sembunyikan Panel"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Tampilkan navigasi pohon item tersembunyi."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Link ke panel utama"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Unlink dari panel utama"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Untuk membatasi semua database di server, tekan Enter setelah kata kunci"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr "Untuk memfilter %s di database, tekan Enter setelah kata kunci"
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tabel"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "Tampilan"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "Prosedur"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "Kejadian"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "Fungsi"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"Halaman yang diminta tidak ditemukan di riwayat, mungkin sudah kadaluarsa."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2482,28 +2525,28 @@ msgstr ""
"untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", versi stabil terakhir:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "Mutakhir"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Buat tampilan"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Kirim laporan kesalahan"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Kiri Laporan Kesalahan"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2511,22 +2554,22 @@ msgstr ""
"Kesalhaan fatal JavaScript telah terdeteksi. Anda ingin mengirimkan laporan "
"kesalahan?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Ubah Pengaturan Pelaporan"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Tampilkan Detail Laporan"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
"Ekspor anda tidak lengkap, karena batas waktu yang rendah di tingkat PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2536,64 +2579,64 @@ msgstr ""
"beberapa bidang mungkin dibatalkan, karena konfigurasi max_input_vars dari "
"PHP."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Kesalahan terdeteksi di server!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Silahkan lihat di bagian bawah jendela ini."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Abaikan"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Sesuai pengaturan Anda, mereka sedang diajukan saat ini, harap bersabar."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Jalankan kueri ini lagi?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Anda yakin akan menghapus penanda ini?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Executed queries"
msgid "%s queries executed %s times in %s seconds."
msgstr "Kueri tereksekusi"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Komentar tabel"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Sembunyikan hasil pencarian"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2603,361 +2646,361 @@ msgstr ""
"beberapa fitur mungkin tidak bekerja dengan sempurna. Di Safari, masalah ini "
"terjadi karena \"Private Mode Browsing\" diaktifkan."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Sblm"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Brkt"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Hari ini"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Januari"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Februari"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Maret"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "April"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mei"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Juni"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Juli"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Agustus"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "September"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Oktober"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "November"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Agu"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Des"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Minggu"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Senin"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Selasa"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Rabu"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Kamis"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Jumat"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sabtu"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Min"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Sen"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Kam"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Min"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Sn"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Sl"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Rb"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Km"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Jm"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Mingguan"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "Kalender-bulan-tahun"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "Kosong"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Jam"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Menit"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Detik"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Gunakan text field"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid email address"
msgstr "Masukan angka yang valid"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "Tolong masukkan angka yang valid!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid date"
msgstr "Masukan angka yang valid"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid date ( ISO )"
msgstr "Masukan angka yang valid"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "Tolong masukkan angka yang valid!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "Tolong masukkan angka yang valid!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "Masukan nilai panjang yang valid!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter the same value again"
msgstr "Masukan angka yang valid"
-#: js/messages.php:776
+#: js/messages.php:777
#, fuzzy
msgid "Please enter no more than {0} characters"
msgstr "Silakan masukkan captcha yang benar!"
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
msgid "Please enter at least {0} characters"
msgstr "Silakan masukkan captcha yang benar!"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a value between {0} and {1}"
msgstr "Masukan angka yang valid"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Masukan nilai panjang yang valid!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Masukan angka yang valid"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid date or time"
msgstr "Masukan angka yang valid"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Tolong masukkan angka yang valid!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3032,17 +3075,17 @@ msgstr "dalam sejam"
msgid "per day"
msgstr "per hari"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "File configuration yang ada (%s) tidak dapat di baca."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Perizinan yang salah pada file konfigurasi, sehingga tidak dapat ditulis!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Ukuran huruf"
@@ -3061,7 +3104,7 @@ msgid "Requery"
msgstr "Kueri ulang"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3260,7 +3303,7 @@ msgid "Count:"
msgstr "Jumlah"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3435,7 +3478,7 @@ msgstr "Perbarui bookmark"
msgid "Delete bookmark"
msgstr "Hapus bookmark"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3443,19 +3486,19 @@ msgstr ""
"Server tidak merespon (atau soket server lokal tidak dikonfigurasi dengan "
"benar)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Server tidak merespon."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Harap periksa hak akses direktori basis data."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Rincian…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
@@ -3528,6 +3571,16 @@ msgstr "Kata dipisahkan oleh karakter spasi (\" \")."
msgid "Inside tables:"
msgstr "Dalam tabel:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Pilih Semua"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Lepas Semua"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Dalam kolom:"
@@ -3581,7 +3634,7 @@ msgid "All"
msgstr "Semua"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Jumlah baris:"
@@ -3880,7 +3933,7 @@ msgstr ""
"untuk dibuang."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3891,34 +3944,13 @@ msgstr "Server"
msgid "View"
msgstr "Gambarkan"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4013,8 +4045,8 @@ msgstr "Tengah kolom"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Basis data"
@@ -4120,7 +4152,7 @@ msgid "Recent"
msgstr "Terbaru"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Tabel favorit"
@@ -4189,16 +4221,6 @@ msgstr "Gabung"
msgid "Sorting"
msgstr "Pengurutan"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabel"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Koordinator transaksi"
@@ -4763,7 +4785,7 @@ msgstr "Batas ukuran: %s%s"
msgid "MySQL said: "
msgstr "MySQL menyatakan: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Jelaskan SQL"
@@ -4780,7 +4802,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Kode PHP tidak ditemukan"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Buat kode PHP"
@@ -4895,17 +4917,6 @@ msgstr "Gunakan nilai ini"
msgid "Rows"
msgstr "Baris"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5080,7 +5091,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Metode autentikasi dalam konfigurasi tidak sah:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5088,24 +5099,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Anda harus memperbarui ke %s %s atau lebih baru."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Error: Token tidak cocok"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "upaya penimpaan GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "memungkinkan mengeksploitasi"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "tombol angka terdeteksi"
@@ -5346,7 +5357,7 @@ msgid "Set value: %s"
msgstr "Tetapkan nilai: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Kembalikan nilai bawaan"
@@ -5852,7 +5863,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Waktu eksekusi maksimum"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -5862,7 +5873,7 @@ msgstr "Tambahkan statement %s"
msgid "Save as file"
msgstr "Simpan sebagai berkas"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Set karakter berkas"
@@ -5889,15 +5900,15 @@ msgstr "Kompresi"
msgid "Put columns names in the first row"
msgstr "Masukkan nama kolom pada baris pertama"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Kolom diapit oleh"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Kolom diloloskan oleh"
@@ -5913,14 +5924,14 @@ msgstr "Ganti NULL dengan"
msgid "Remove CRLF characters within columns"
msgstr "Hapus karakter CRLF dalam kolom"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Kolom diakhiri oleh"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Baris diakhir dengan"
@@ -5990,7 +6001,7 @@ msgid "Save on server"
msgstr "Simpan di server"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Timpa berkas yang ada"
@@ -6008,8 +6019,8 @@ msgstr "Tambahkan nilai AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Apit nama tabel dan kolom dengan tanda petik balik"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Modus kompatibilitas SQL"
@@ -6130,15 +6141,15 @@ msgid "Customize browse mode."
msgstr "Atur mode jelajah."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Sesuaikan opsi bawaan."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "Data CSV"
@@ -6166,7 +6177,7 @@ msgstr "Bawaan ekspor"
msgid "Customize default export options."
msgstr "Atur opsi bawaan ekspor."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Fitur"
@@ -6211,40 +6222,52 @@ msgstr "Panel navigasi"
msgid "Customize appearance of the navigation panel."
msgstr "Atur tampilan panel navigasi."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Panel navigasi"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Atur panel navigasi"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Server"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Opsi tampilan server."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Opsi tampilan tabel."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Panel utama"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Pengaturan utama lain"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Pengaturan yang tidak masuk di mana pun."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Judul halaman"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6258,11 +6281,11 @@ msgstr ""
"untuk magic strings yang dapat digunakan untuk mendapatkan nilai-nilai "
"khusus."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Keamanan"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6270,23 +6293,23 @@ msgstr ""
"Sebagai catatan bahwa phpMyAdmin hanyalah antarmuka pengguna dan fitur-"
"fiturnya tidak membatasi MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Pengaturan dasar"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Autentikasi"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Pengaturan otentikasi."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Konfigurasi server"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6294,15 +6317,15 @@ msgstr ""
"Konfigurasi mahir server, jangan mengubah pilihan-pilihan berikut kecuali "
"Anda tahu untuk apa penggunaannya."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Masukkan parameter untuk koneksi server."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Penyimpanan konfigurasi"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6312,11 +6335,11 @@ msgstr ""
"akses ke berbagai fitur tambahan, lihat dokumentasi [doc@linked-"
"tables]konfigurasi penyimpanan phpMyAdmin[/doc]."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Pelacakan perubahan"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6324,109 +6347,109 @@ msgstr ""
"Pelacakan perubahan yang dilakukan dalam database. Membutuhkan penyimpanan "
"konfigurasi phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Sesuaikan opsi ekspor"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Atur bawaan impor"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Atur panel navigasi"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Atur panel utama"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Kueri SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Kotak Kueri SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Atur tautan yang ditampilkan di kotak Kueri SQL."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Pengaturan kueri SQL."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Awal"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Atur halaman awal."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Stuktur basis data"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr "Pilih detail mana untuk menampilkan struktur database (daftar tabel)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Struktur tabel"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Pengaturan untuk struktur tabel (daftar kolom)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Tab"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Pilih cara kerja tab yang Anda inginkan."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Tampilkan skema relasi"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Ukuran kertas"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Isian teks"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Sesuaikan isian masukan teks."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Teks Texy!"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Sesuaikan opsi bawaan"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Peringatan"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Nonaktifkan beberapa peringatan dari phpMyAdmin."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6434,15 +6457,15 @@ msgstr ""
"Aktifkan kompresi [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] untuk "
"operasi impor dan ekspor."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Parameter tambahan untuk iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6450,11 +6473,11 @@ msgstr ""
"Jika diaktifkan, phpMyAdmin terus menjalankan multi-statmen kueri bahkan "
"jika salah satu query gagal."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Abaikan galat perintah jamak"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6464,25 +6487,25 @@ msgstr ""
"ini cara yang baik ketika mengimpor file yang besar, sehingga transaksi "
"dapat dibatalkan."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Impor parsial: izinkan interupsi"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Jangan gugurkan sewaktu galat INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6490,69 +6513,69 @@ msgstr ""
"Format standar, sadari bahwa daftar ini tergantung pada lokasi (database, "
"tabel) dan hanya ketika SQL tersedia."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Format berkas impor"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Gunakan kata kunci LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Nama kolom pada baris pertama"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Jangan impor baris kosong"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Impor mata uang ($5.00 menjadi 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Impor persentase menjadi nilai desimal (12.00% menjadi .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Jumlah kueri yang dilewati dari awal."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Impor parsial: lewati kueri"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Kondisi awal slider"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Jumlah baris yang dapat ditambahkan dalam satu waktu."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Jumlah baris tambahan"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Jumlah maksimum karakter yang ditunjukkan pada kolom non-angka pada mode "
"jelajah."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Batas karakter kolom"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6563,11 +6586,11 @@ msgstr ""
"membuatnya mudah untuk melupakan log out dari server lain ketika terhubung "
"ke beberapa server."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Hapus semua kuki sewaktu keluar"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6579,11 +6602,11 @@ msgstr ""
"Tentukan apakah login sebelumnya harus diingat atau tidak dalam mode "
"otentikasi cookie."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Ingat nama pengguna"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6595,48 +6618,48 @@ msgstr ""
"dan akan dihapus segera setelah Anda menutup jendela browser. Hal ini "
"direkomendasikan untuk lingkungan tak terpercaya."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Penyimpanan kuki masuk"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Tentukan berapa lama (dalam detik) cookie login valid."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Validitas kuki masuk"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Ukuran Double textarea untuk kolom LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Textarea lebih besar untuk LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Jumlah maksimum karakter yang dipakai sewaktu menampilkan kueri SQL."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Panjang SQL maksimum yang ditayangkan"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Pengguna tidak dapat menetapkan nilai yang lebih tinggi"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "Jumlah maksimum database yang ditampilkan dalam daftar database."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Basis data maksimum"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid ""
#| "The number of items that can be displayed on each page of the navigation "
@@ -6647,24 +6670,24 @@ msgid ""
msgstr ""
"Jumlah item yang dapat ditampilkan pada setiap halaman dari pohon navigasi."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum items in branch"
msgid "Maximum items on first level"
msgstr "Item maksimal di cabang"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
"Jumlah item yang dapat ditampilkan pada setiap halaman dari pohon navigasi."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Item maksimal di cabang"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6672,19 +6695,19 @@ msgstr ""
"Jumlah baris yang ditampilkan saat browsing hasil set. Jika hasil set berisi "
"lebih dari satu baris, tautan \"Previous\" and \"Next\" akan ditampilkan."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Jumlah maksimum baris yang ditampilkan"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Jumlah maksimum tabel yang ditampilkan pada daftar tabel."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Tabel maksimum"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6692,44 +6715,44 @@ msgstr ""
"Jumlah bytes script yang diperbolehkan untuk mengalokasikan, misalnya. "
"[kbd]32M[/kbd] ([kbd]0[/kbd] untuk tak terbatas)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Limit memori"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Tampilkan navigasi pohon item tersembunyi."
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
#, fuzzy
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Menghubungkan dengan panel utama dengan menyorot database saat ini atau "
"tabel."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Tampilkan logo di panel navigasi."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Tampilkan logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "Arahkan URL untuk logo pada panel navigasi."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL tautan logo"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6737,29 +6760,29 @@ msgstr ""
"Buka halaman tertaut di jendela utama ([kbd]main[/kbd]) atau jendela baru "
"([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Sasaran tautan logo"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "Tampilkan pilihan server di bagian atas panel navigasi."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Tampilkan pilihan server"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Target ikon akses cepat"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Target ikon akses cepat"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6767,15 +6790,15 @@ msgstr ""
"Tentukan jumlah minimum item (tabel, view, routines dan event) untuk "
"menampilkan kotak filter."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Jumlah minimum item yang ditampilkan di kotak tabel filter"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Jumlah minimum database yang ditampilkan di kotak tabel filter"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6786,111 +6809,166 @@ msgid ""
msgstr ""
"Item Group di pohon navigasi (ditentukan oleh pemisah definisikan di bawah)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Item Group di pohon"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
"String yang memisahkan basis data ke dalam tingkat hierarki yang berbeda."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Pemisah hierarki basis data"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "String yang memisahkan tabel ke dalam tingkat hierarki yang berbeda."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Pemisah hierarki tabel"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Kedalaman hierarki tabel maksimum"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Sorot server yang dikenai kursor."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Aktifkan penyorotan"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
#, fuzzy
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr "Apakah akan menonaktifkan kemungkinan ekspansi database atau tidak."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "Bar tabel navigasi"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Showing tables"
+msgid "Show tables in tree"
+msgstr "Menampilkan tabel"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Apakah akan menonaktifkan kemungkinan ekspansi database atau tidak."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Tunjukkan Versi"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Tampilkan navigasi pohon item tersembunyi."
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Tampilkan isian fungsi"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Tampilkan Proses"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Tunjukkan Versi"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Tampilkan navigasi pohon item tersembunyi."
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Jumlah maksimum tabel yang terakhir digunakan; atur 0 untuk menonaktifkannya."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable."
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
"Jumlah maksimum tabel yang terakhir digunakan; atur 0 untuk menonaktifkannya."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Tabel yang terakhir digunakan"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Berikut ini adalah tautan Edit, Salin, dan Hapus."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Tempat menampilkan tautan baris tabel"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "Gunakan urutan alami untuk pengurutan nama tabel dan basis data."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Urutan alami"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Gunakan hanya ikon, hanya teks, atau keduanya."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Bar tabel navigasi"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Gunakan gzip output buffering untuk meningkatkan kecepatan dalam transfer "
"HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "Penyanggaan keluaran GZip"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6898,19 +6976,19 @@ msgstr ""
"[kbd]SMART[/kbd] - yaitu urutan untuk kolom jenis TIME, DATE, DATETIME dan "
"TIMESTAMP, urutan ascending dan sebaliknya."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Urutan bawaan"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Gunakan koneksi persisten ke basis data MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Koneksi persisten"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6920,11 +6998,11 @@ msgstr ""
"jika kebutuhan tabel untuk penyimpanan konfigurasi phpMyAdmin tidak "
"ditemukan."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6932,11 +7010,11 @@ msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan ketika terdeteksi perbedaan "
"antara pustaka MySQL dan server."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Server/library perbedaan peringatan"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6944,27 +7022,27 @@ msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan sewaktu nama kolom dalam "
"tabel tabel telah dipesan oleh MySQL."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Peringatan! kata telah digunakan MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Atur tampilan tab menu"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Bagaimana menampilkan berbagai link tindakan"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Nonaktifkan pengeditan kolom BLOB dan BINARY."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Lindungi kolom biner"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6974,129 +7052,129 @@ msgstr ""
"konfigurasi phpMyAdmin). Jika dinonaktifkan, ini menggunakan JS-routines "
"untuk menampilkan riwayat query(hilang ketika jendela ditutup)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Riwayat kueri permanen"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Jumlah query yang disimpan dalam riwayat."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Panjang riwayat kueri"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "Pilih fungsi yang akan digunakan untuk konversi set karakter."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Mesin pengode ulang"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Saat browsing tabel, penyortiran setiap tabel akan diingat."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Ingat urutan tabel"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
#, fuzzy
msgid "Default sort order for tables with a primary key."
msgstr "Urutan default untuk tabel dengan primary key."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Urutan bawaan"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Ulangi header setiap X sel, [kbd]0[/kbd] menonaktifkan fitur ini."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Ulangi judul"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Pengeditan Grid: trigger action"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Kolom tampilan relasi"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "Opsi tampilan server."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Pengeditan Grid: Simpan semua sel yang diedit sekaligus"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Direktori penyimpanan hasil ekspor di server."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Direktori penyimpanan"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Biarkan kosong jika tidak digunakan."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Urutan otorisasi inang"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Biarkan kosong untuk menggunakan bawaan."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Aturan otorisasi inang"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Izinkan masuk tanpa sandi"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Izinkan masuk root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Nilai sesi"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
#, fuzzy
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"nama HTTP Basic Auth Realm untuk ditampilkan ketika melakukan HTTP Auth."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7106,19 +7184,19 @@ msgstr ""
"SweKey [/a](tidak terletak di document root Anda, disarankan: /etc/swekey."
"conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "Berkas config SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Metode autentikasi yang dipakai."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Jenis autentikasi"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7126,11 +7204,11 @@ msgstr ""
"Biarkan kosong untuk tanpa dukungan [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bookmark[/a], disarankan:[kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Tabel markah"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7138,32 +7216,32 @@ msgstr ""
"Biarkan kosong untuk tanpa kolom komentar/mime type, saran: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Tabel informasi kolom"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Kompres koneksi ke server MySQL."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Pampatkan koneksi"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Bagaimana menghubungkan ke server, tetap [kbd]tcp[/kbd] bila tidak yakin."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Jenis koneksi"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Sandi pengguna pengendali"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7172,11 +7250,11 @@ msgstr ""
"informasi lebih lanjut yang tersedia pada [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Pengguna pengendali"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7184,11 +7262,11 @@ msgstr ""
"Sebuah host alternatif untuk memegang penyimpanan konfigurasi; biarkan "
"kosong untuk menggunakan host yang telah ditetapkan."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Inang pengendali"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7198,15 +7276,15 @@ msgstr ""
"biarkan kosong untuk menggunakan port bawaan, atau port yang telah "
"ditentukan, jika controlhost adalah host yang sama."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Port kontrol"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Sembunyikan pencocokan ekspresi reguler database(PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7215,15 +7293,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] dan [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Noaktifkan penggunaan INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Sembunyikan basis data"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7231,23 +7309,23 @@ msgstr ""
"Biarkan kosong untuk tanpa dukungan riwayat kueri SQL, saran: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Tabel riwayat kueri SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Nama host yang menjalankan server MySQL."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Nama inang server"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "URL keluar"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7255,17 +7333,17 @@ msgstr ""
"Batas jumlah preferensi tabel yang disimpan dalam database, catatan terlama "
"akan dihapus secara otomatis."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Jumlah maksimal preferensi tabel untuk menyimpan"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Lihat tabel status slave"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7277,13 +7355,13 @@ msgstr ""
"Biarkan kosong agar tidak mendukung skema PDF, saran: [kbd]pma__pdf_pages[/"
"kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Kolom textarea"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7295,15 +7373,15 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Coba koneksi tanpa sandi."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Tersambung tanpa sandi"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
#, fuzzy
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
@@ -7314,30 +7392,30 @@ msgstr ""
"Anda ingin menggunakan contoh literal, yaitu gunakan [kbd]'my\\_db'[/kbd] "
"dan bukan [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Tampilkan hanya basis data terdaftar"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Biarkan kosong jika tidak menggunakan config auth."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Sandi untuk autentikasi config"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Biarkan kosong agar tidak mendukung skema PDF, saran: [kbd]pma__pdf_pages[/"
"kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "Skema PDF: tabel halaman"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7347,21 +7425,21 @@ msgstr ""
"wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] untuk informasi lengkap. Biarkan "
"kosong agar tanpa dukungan tersebut. Disarankan: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nama basis data"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "Port yang server MySQL mendengarkan, biarkan kosong untuk default."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Porta server"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7373,11 +7451,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Tabel yang baru digunakan"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7389,13 +7467,13 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Tabel favorit"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7407,11 +7485,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Tabel relasi"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7419,35 +7497,35 @@ msgstr ""
"Untuk contoh lihat [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types[/a]."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Nama sesi Signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "URL Signon"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Soket di mana server MySQL adalah mendengarkan, biarkan kosong untuk default."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Socket server"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Aktifkan SSL untuk koneksi ke server MySQL"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Gunakan SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7459,13 +7537,13 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "Skema PDF: koordinat tabel"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7477,11 +7555,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Tabel kolom tampilan"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7493,11 +7571,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Tabel preferensi UI"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
#, fuzzy
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
@@ -7506,11 +7584,11 @@ msgstr ""
"Apakah DATABASE DROP JIKA ada pernyataan akan ditambahkan sebagai baris "
"pertama untuk log saat membuat database."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Tambahkan DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
#, fuzzy
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
@@ -7519,11 +7597,11 @@ msgstr ""
"Apakah TABLE DROP JIKA ada pernyataan akan ditambahkan sebagai baris pertama "
"untuk log saat membuat tabel."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Tambahkan DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
#, fuzzy
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
@@ -7532,20 +7610,20 @@ msgstr ""
"Apakah DROP sebuah VIEW JIKA ada pernyataan akan ditambahkan sebagai baris "
"pertama untuk log saat membuat tampilan."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Tambahkan DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
#, fuzzy
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "Mendefinisikan daftar laporan auto-penciptaan menggunakan versi baru."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Statement untuk dilacak"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7557,11 +7635,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Tabel pelacakan kueri SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
#, fuzzy
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
@@ -7570,11 +7648,11 @@ msgstr ""
"Apakah mekanisme pelacakan menciptakan versi untuk tabel dan tampilan secara "
"otomatis."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Buat versi secara otomatis"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7586,11 +7664,11 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Tabel penyimpanan preferensi pengguna"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
#, fuzzy
msgid ""
"Both this table and the user groups table are required to enable the "
@@ -7601,13 +7679,13 @@ msgstr ""
"fitur menu dikonfigurasi; Meninggalkan salah satu dari mereka kosong akan "
"menonaktifkan fitur ini, disarankan: [kbd] pma__users [/ kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Gunakan Tabel"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
#, fuzzy
msgid ""
"Both this table and the users table are required to enable the configurable "
@@ -7618,13 +7696,13 @@ msgstr ""
"dikonfigurasi; Meninggalkan salah satu dari mereka kosong akan menonaktifkan "
"fitur ini, disarankan: [kbd] pma__usergroups [/ kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Gunakan Host Table"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7636,16 +7714,16 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
#, fuzzy
msgid "Hidden navigation items table"
msgstr "Tersembunyi tabel item navigasi"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Pengguna autentikasi config"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7653,21 +7731,21 @@ msgstr ""
"Deskripsi server yang lebih jelas. Biarkan kosong untuk menampilkan nama "
"inang saja."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Nama deskriptif server"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Tampilkan tombol \"tampilkan semua (baris)\" kepada pengguna"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Izinkan tampilan semua baris"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
#, fuzzy
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7679,41 +7757,41 @@ msgstr ""
"konfigurasi; ini tidak membatasi kemampuan untuk menjalankan perintah yang "
"sama secara langsung."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Tampilkan formulir penggantian sandi"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Tampilkan formulir pembuatan basis data"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Menampilkan atau menyembunyikan kolom menampilkan timestamp Penciptaan untuk "
"semua tabel."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentar tabel"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
#, fuzzy
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Menampilkan atau menyembunyikan kolom menampilkan timestamp Penciptaan untuk "
"semua tabel."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Tampilkan tindakan lain"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
#, fuzzy
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
@@ -7721,12 +7799,12 @@ msgstr ""
"Menampilkan atau menyembunyikan kolom menampilkan timestamp Terakhir "
"diperbaharui untuk semua tabel."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
#, fuzzy
msgid "Show Last update timestamp"
msgstr "Tampilkan pembaruan timestamp terakhir"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
#, fuzzy
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
@@ -7734,13 +7812,13 @@ msgstr ""
"Menampilkan atau menyembunyikan kolom menampilkan cek timestamp terakhir "
"untuk semua tabel."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Tampilkan status master"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
#, fuzzy
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
@@ -7749,31 +7827,31 @@ msgstr ""
"Mendefinisikan apakah atau tidak ketik ladang harus awalnya ditampilkan "
"dalam mode edit / insert."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Tampilkan jenis isian"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Menampilkan isian fungsi pada modus edit/tambahkan"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Tampilkan isian fungsi"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "Where to show the table row links"
msgid "Whether to show hint or not."
msgstr "Tempat menampilkan tautan baris tabel"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Tampilkan petunjuk"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7785,15 +7863,15 @@ msgstr ""
"Tampilkan tautan untuk melihat hasil [a@http://php.net/manual/function."
"phpinfo.php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Tampilkan tautan phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Tampilkan informasi detail server MySQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
@@ -7801,11 +7879,11 @@ msgstr ""
"Mendefinisikan apakah query SQL yang dihasilkan oleh phpMyAdmin harus "
"ditampilkan."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Tampilkan kueri SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
#, fuzzy
msgid ""
"Defines whether the query box should stay on-screen after its submission."
@@ -7813,24 +7891,24 @@ msgstr ""
"Mendefinisikan apakah kotak pertanyaan harus tinggal di layar setelah "
"penyerahan."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Sembunyikan kotak kueri"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Memungkinkan untuk menampilkan database dan tabel statistik (misalnya. "
"Penggunaan ruang)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Tampilkan statistik"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
#, fuzzy
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
@@ -7838,11 +7916,11 @@ msgstr ""
"Mark menggunakan tabel dan memungkinkan untuk menampilkan database dengan "
"tabel terkunci."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Lewati tabel terkunci"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -7850,11 +7928,11 @@ msgid ""
"detected."
msgstr "Menampilkan peringatan pada halaman utama jika Suhosin terdeteksi"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Peringatan Suhosin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7867,13 +7945,13 @@ msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan sewaktu nama kolom dalam "
"tabel tabel telah dipesan oleh MySQL."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Validitas kuki masuk"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
@@ -7882,11 +7960,11 @@ msgstr ""
"Ukuran textarea (kolom) dalam mode edit, nilai ini akan ditekankan untuk "
"dihapus saja query SQL (*2) dan untuk jendela query (*1,25)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Kolom textarea"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -7895,35 +7973,35 @@ msgstr ""
"Ukuran textarea (baris) dalam mode edit, nilai ini akan ditekankan untuk "
"dihapus saja query SQL (*2) dan untuk jendela query (*1,25)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Baris textarea"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "Judul jendela peramban sewaktu basis data dipilih"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "Judul jendela peramban sewaktu tidak ada yang dipilih"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Judul bawaan"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Judul jendela peramban sewaktu server dipilih."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Judul jendela peramban ketika tabel dipilih."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
#, fuzzy
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
@@ -7936,27 +8014,27 @@ msgstr ""
"For) terpercaya, header datang dari proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Daftar proksi tepercaya untuk allow/deny IP"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "Direktori server tempat mengunggah berkas ekspor."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Direktori unggahan"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Mengizinkan pencarian terhadap seluruh basis data."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Gunakan pencarian basis data"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7964,26 +8042,26 @@ msgstr ""
"Ketika dinonaktifkan, pengguna tidak dapat mengatur pilihan apapun di bawah "
"ini, lepas centang kotak di sebelah kanan."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Aktifkan tab pengembang dalam pengaturan"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Periksa versi terbaru"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "Aktifkan pemeriksaan versi terbaru pada halaman utama phpMyAdmin."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Pemeriksaan versi"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7995,11 +8073,11 @@ msgstr ""
"jika server yang terinstal phpMyAdmin tidak memiliki akses langsung ke "
"internet. Formatnya adalah: \"hostname:portnumber\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Alamat proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -8009,19 +8087,19 @@ msgstr ""
"otentikasi yang dilakukan. Jika nama pengguna diberikan, otentikasi dasar "
"akan dilakukan. Tidak ada jenis otentikasi lain yang didukung saat ini."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Nama Pengguna Proxy"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "Password untuk otentikasi proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Password proxy"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -8029,47 +8107,47 @@ msgstr ""
"Aktifkan kompresi [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"untuk operasi impor dan ekspor."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Masukkan kunci publik Anda untuk layanan reCAPTCHA domain Anda."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Kunci publik untuk reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "Masukkan kunci privat Anda untuk layanan reCAPTCHA domain Anda."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Kunci privat untuk reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Pilih aksi default saat mengirim laporan kesalahan."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Kirim laporan kesalahan"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Kueri tereksekusi"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
#, fuzzy
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
@@ -8078,7 +8156,7 @@ msgstr ""
"Aktifkan mode Zero Configuration yang memungkinkan anda mengatur phpMyAdmin "
"tabel penyimpanan konfigurasi otomatis."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8106,44 +8184,44 @@ msgstr "Autentikasi HTTP"
msgid "Signon authentication"
msgstr "Autentikasi signon"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV menggunakan LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Lembar sebar OpenDocument"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Cepat"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Kustom"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Opsi ekspor basis data"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV untuk data MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Teks OpenDocument"
@@ -8174,7 +8252,7 @@ msgstr ""
"Anda menggunakan ekstensi mysql yang sudah ditinggalkan di phpMyAdmin. "
"Silakan pertimbangkan untuk menginstal ekstensi mysqli."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8243,7 +8321,7 @@ msgstr "Buat tabel"
msgid "Number of columns"
msgstr "Jumlah kolom"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Tidak dapat memuat plugin export, harap periksa instalasi Anda!"
@@ -8286,11 +8364,11 @@ msgstr "Tabel:"
msgid "Format:"
msgstr "Format:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Opsi khusus format:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8298,52 +8376,52 @@ msgstr ""
"Gulir ke bawah untuk mengisi pilihan untuk format yang dipilih dan "
"mengabaikan pilihan untuk format lain."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Konversi Pengodean:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Baris:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Dump beberapa baris"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Baris untuk memulai:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Dump semua row"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Hasil:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Simpan ke direktori %s di server"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Templat nama berkas:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ akan menjadi nama server"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ akan menjadi nama basis data"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ akan menjadi nama tabel"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, fuzzy, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8354,76 +8432,88 @@ msgstr ""
"menggunakan format string waktu. Tambahan ditransformasi sehingga menjadi: "
"%3$s. Teks lain akan disimpan seperti biasa. Lihat %4$sFAQ%5$s untuk rincian."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "gunakan ini untuk ekspor kedepannya"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Set karakter berkas:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Kompresi:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "di-zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "di-gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Tampilkan hasil sebagai teks"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Mengekspor tampilan sebagai tabel"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "horisontal (judul diputar)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
#, fuzzy
msgid "Rename exported databases/tables/columns"
msgstr "Ubah nama diekspor database / tabel / kolom"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Simpan hasil ke suatu berkas"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
#, fuzzy
msgid "Skip tables larger than"
msgstr "Lewati tabel lebih besar dari"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Pilih tabel"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Pilih tabel"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "Nama basis data"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New page name: "
msgid "New table name"
msgstr "Nama halaman baru: "
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "Salin Nama kolom"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9090,7 +9180,7 @@ msgid "Create an index on %s columns"
msgstr "Buat indeks pada %s kolom"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Sembunyikan"
@@ -9233,11 +9323,6 @@ msgstr "Dari"
msgid "To"
msgstr "Menjadi"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Kirim"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add table prefix"
@@ -9458,29 +9543,35 @@ msgstr "Sebuah kesalahan telah terjadi saat memuat pohon navigasi"
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names: "
+msgid "Groups:"
+msgstr "Nama kolom: "
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Event"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Fungsi"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Prosedur"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Tabel"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "Views"
msgid "Views:"
@@ -9510,13 +9601,13 @@ msgstr "Panel navigasi"
msgid "Reload navigation panel"
msgstr "Muat ulang bingkai navigasi"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, fuzzy, php-format
#| msgid "%s other result found"
#| msgid_plural "%s other results found"
@@ -9524,26 +9615,26 @@ msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s hasil lainnya ditemukan"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Filter tables by name"
msgid "Filter databases by name or regex"
msgstr "Filter tabel menurut nama"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Clear series"
msgid "Clear fast filter"
msgstr "Bersihkan seri"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Filter tables by name"
msgid "Filter by name or regex"
msgstr "Filter tabel menurut nama"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
#, fuzzy
msgid "Collapse all"
msgstr "Tutup semua"
@@ -9583,7 +9674,7 @@ msgstr "Baru"
msgid "Database operations"
msgstr "Opsi ekspor basis data"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -10952,13 +11043,13 @@ msgstr "Nama kolom: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, fuzzy, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Parameter yang salah untuk impor CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, fuzzy, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10967,13 +11058,13 @@ msgstr ""
"Kolom tidak valid (%s) yang ditentukan! Pastikan bahwa nama kolom dieja "
"dengan benar, dipisahkan dengan koma, dan tidak tertutup dalam tanda kutip."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Format masukan CSV tidak valid pada baris %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Format masukan CSV tidak valid pada baris %d."
@@ -11407,47 +11498,47 @@ msgstr "Format teks sebagai kueri SQL dengan penyorotan sintaks."
msgid "Formats text as XML with syntax highlighting."
msgstr "Format teks sebagai kueri SQL dengan penyorotan sintaks."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Galat: relasi sudah ada."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "Relasi FOREIGN KEY telah ditambahkan."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Galat: Relasi FOREIGN KEY tidak dapat ditambahkan.!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Galat: index hilang pada kolom."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Galat: Fitur Relasi tidak diaktifkan!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "Relasi internal telah ditambahkan."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Galat: Relasi internal tidak dapat ditambahkan!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "Relasi FOREIGN KEY telah dihapus."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Galat: Relasi FOREIGN KEY tidak dapat dihapus!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Galat: Relasi Internal tidak dapat dihapus!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "Relasi internal telah dihapus."
@@ -11538,22 +11629,28 @@ msgstr "Menyimpan Query-By-Contoh pencarian"
msgid "Managing Central list of columns"
msgstr "Mengelola daftar Central kolom"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Ingat urutan tabel"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Langkah cepat untuk menyiapkan fitur lanjut:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Membuat tabel yang dibutuhkan dengan contoh/create_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
#, fuzzy
msgid "Create a pma user and give access to these tables."
msgstr "Membuat user pma dan memberikan akses ke tabel ini."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
#, fuzzy
msgid ""
"Enable advanced features in configuration file (config.inc.php"
@@ -11562,23 +11659,23 @@ msgstr ""
"Aktifkan fitur-fitur canggih dalam file konfigurasi ( config.inc.php"
"code>), misalnya dengan memulai dari config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
#, fuzzy
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr "Login ulang ke phpMyAdmin untuk memuat file konfigurasi yang baru."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "tidak ada deskripsi"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11586,14 +11683,14 @@ msgid ""
"configuration storage there."
msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12396,7 +12493,7 @@ msgstr "Tidak ada event untuk ditampilkan."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current Server"
msgid "Current Server:"
@@ -17674,9 +17771,6 @@ msgstr "concurrent_insert diatur ke 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Hapus pelacakan data untuk tabel ini"
-#~ msgid "Show versions"
-#~ msgstr "Tunjukkan Versi"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18765,9 +18859,6 @@ msgstr "concurrent_insert diatur ke 0"
#~ msgid "Reset"
#~ msgstr "Reset"
-#~ msgid "Show processes"
-#~ msgstr "Tampilkan Proses"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reset"
diff --git a/po/it.po b/po/it.po
index 376ea808fc..bd57a50e7a 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
-"PO-Revision-Date: 2015-06-24 22:37+0200\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
+"PO-Revision-Date: 2015-06-27 10:58+0200\n"
"Last-Translator: Stefano Martinelli
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2329,28 +2372,28 @@ msgstr ""
"alternare ASC/DESC.
- Ctrl+Click o Alt+Click (Mac: Shift+Option+Click) "
"per rimuovere la colonna dalla clausola ORDER BY"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Clicca per selezionare/deselezionare."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Doppio click per copiare il nome della colonna."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr ""
"Clicca sulla freccia
per cambiare lo stato di visualizzazzione dei "
"campi."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Mostra tutti"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2359,13 +2402,13 @@ msgstr ""
"modifica, copia ed eliminazione potrebbero non funzionare dopo il "
"salvataggio."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
"Inserire una stringa esadecimale valida. I caratteri consentiti sono 0-9, A-"
"F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2373,134 +2416,134 @@ msgstr ""
"Vuoi davvero vedere tutte le righe? Con una tabella di grandi dimensioni, "
"questa operazione potrebbe mandare il browser in crash."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Lunghezza originale"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "Annulla"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Fallito"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Riuscito"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Importa stato"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Rilascia i file qui"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Prima seleziona un database"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
"È possibile modificare la maggior parte dei campi
cliccando due volte "
"direttamente su essi."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
"È possibile modificare la maggior parte dei valori
cliccando "
"direttamente su essi."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Vai al link:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Copia il nome del campo."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Click destro sul nome della colonna per copiarlo negli appunti."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Genera password"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Cambia password"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Più"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Mostra pannello"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Nascondi pannello"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Mostra elementi nascosti dell'albero di navigazione."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Collega al pannello principale"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Scollega dal pannello principale"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
"Per filtrare tutti i database sul server, premi INVIO dopo un termine di "
"ricerca"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
"Per filtrare tutti i %s nel database, premi INVIO dopo un termine di ricerca"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "tabelle"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "viste"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "procedure"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "eventi"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "funzioni"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"La pagina richiesta non è stata trovata nella cronologia, potrebbe essere "
"scaduta."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2510,28 +2553,28 @@ msgstr ""
"l'aggiornamento. La versione più recente è la %s, rilasciata il %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", versione stabile piú recente:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "aggiornata"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Crea vista"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Invia segnalazione di errore"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Invia segnalazione di errore"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
@@ -2539,15 +2582,15 @@ msgstr ""
"Un errore fatale di JavaScript si è verificato. Vuoi inviare una "
"segnalazione?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Modifica le impostazioni delle segnalazioni"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Mostra i dettagli della segnalazione"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
@@ -2555,7 +2598,7 @@ msgstr ""
"L'esportazione non è stata completata, a causa di un limite di tempo troppo "
"basso nell'esecuzione di script PHP!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2565,65 +2608,62 @@ msgstr ""
"alcuni campi saranno ignorati, a causa della configuazione max_input_vars di "
"PHP."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Sono stati rilevati alcuni errori sul server!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Guarda in fondo a questa finestra."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignora Tutto"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
"Secondo le impostazioni, sono in corso di presentazione, si prega di "
"attendere."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Eseguire di nuovo questa query?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Sei sicuro di voler eliminare questo bookmark?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
"Ci sono stati alcuni errori durante il recupero delle informazioni di debug "
"SQL."
-#: js/messages.php:592
+#: js/messages.php:593
#, php-format
-#| msgid "Enter executes queries in console"
msgid "%s queries executed %s times in %s seconds."
msgstr "%s query eseguite %s volte in %s secondi."
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr "%s argomento(i) passati"
-#: js/messages.php:594
-#| msgid "Show table comments"
+#: js/messages.php:595
msgid "Show arguments"
msgstr "Mostra argomenti"
-#: js/messages.php:595
-#| msgid "Hide search results"
+#: js/messages.php:596
msgid "Hide arguments"
msgstr "Nascondi argomenti"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr "Tempo utilizzato:"
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2634,331 +2674,331 @@ msgstr ""
"essere disponibili. Nel browser Safari questo problema di solito è causato "
"dalla modalità \"Navigazione Privata\"."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Prec"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Prossimo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Oggi"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Gennaio"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Febbraio"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Marzo"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Aprile"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Maggio"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Giugno"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Luglio"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Agosto"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Setttembre"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Ottobre"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Novembre"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Dicembre"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mag"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Giu"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Lug"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Ott"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Domenica"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Lunedì"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Martedì"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Mercoledì"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Giovedì"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Venerdì"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Sabato"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Gi"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Sett"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "Nessuno"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Ora"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Secondo"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr "Questo campo è obbligatorio"
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Si prega di correggere questo campo"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Per favore inserisci un indirizzo email valido"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Si prega di inserire un URL valido"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Si prega di inserire una data valida"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Si prega di inserire una data valida ( ISO )"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Si prega di inserire un numero valido"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Si prega di inserire un numero di carta di credito valido"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Si prega di inserire solo cifre"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Si prega di inserire lo stesso valore di nuovo"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr "Si prega di inserire non più di {0} caratteri"
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Si prega di inserire almeno {0} caratteri"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr "Per favore inserisci un valore tra {0} e {1} caratteri"
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Immettere un valore compreso tra {0} e {1}"
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr "Per favore inserisci un valore minore o uguale a {0}"
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr "Immettere un valore maggiore o uguale a {0}"
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr "Si prega di inserire una data o un'ora valida"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr "Si prega di inserire un input HEX valido"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3032,18 +3072,18 @@ msgstr "all'ora"
msgid "per day"
msgstr "al giorno"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "File di configurazione esistente (%s) non è leggibile."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Permessi incorretti sul file di configurazione, non deve essere scrivibile "
"da tutti!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Dimensione font"
@@ -3062,7 +3102,7 @@ msgid "Requery"
msgstr "Re-query"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3192,17 +3232,14 @@ msgid "Press Enter to execute query"
msgstr "Premere INVIO per eseguire query"
#: libraries/Console.class.php:277
-#| msgid "Ascending"
msgid "ascending"
msgstr "crescente"
#: libraries/Console.class.php:280
-#| msgid "Descending"
msgid "descending"
msgstr "decrescente"
#: libraries/Console.class.php:283
-#| msgid "Order"
msgid "Order:"
msgstr "Ordine:"
@@ -3211,7 +3248,6 @@ msgid "Count"
msgstr "Conteggio"
#: libraries/Console.class.php:292
-#| msgid "Execute every"
msgid "Execution order"
msgstr "Ordine di esecuzione"
@@ -3220,37 +3256,31 @@ msgid "Time taken"
msgstr "Tempo utilizzato"
#: libraries/Console.class.php:298
-#| msgid "Order"
msgid "Order by:"
msgstr "Ordine per:"
#: libraries/Console.class.php:301
-#| msgid "SQL queries"
msgid "Group queries"
msgstr "Raggruppa query"
#: libraries/Console.class.php:304
-#| msgid "SQL queries"
msgid "Ungroup queries"
msgstr "Dividi Query"
#: libraries/Console.class.php:315
-#| msgid "Show create"
msgid "Show trace"
msgstr "Mostra traccia"
#: libraries/Console.class.php:316
-#| msgid "Hide Panel"
msgid "Hide trace"
msgstr "Nascondi traccia"
#: libraries/Console.class.php:317
-#| msgid "Count"
msgid "Count:"
msgstr "Conteggio:"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3339,7 +3369,6 @@ msgid "Sort:"
msgstr "Ordinamento:"
#: libraries/DBQbe.class.php:630
-#| msgid "Sort:"
msgid "Sort order:"
msgstr "Ordinamento:"
@@ -3424,7 +3453,7 @@ msgstr "Aggiorna segnalibro"
msgid "Delete bookmark"
msgstr "Elimina segnalibro"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3432,19 +3461,19 @@ msgstr ""
"Il server non risponde (o il socket del server locale MySQL non è "
"correttamente configurato)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Il server non risponde."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Controllate i privilegi della cartella che contiene il database."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Dettagli…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Connessione per controluser come definito nella configurazione fallita."
@@ -3519,6 +3548,16 @@ msgstr "Le parole sono separate da spazi (\" \")."
msgid "Inside tables:"
msgstr "Nelle tabelle:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Seleziona tutto"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Deseleziona tutto"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "All'interno del campo:"
@@ -3572,7 +3611,7 @@ msgid "All"
msgstr "Tutti"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Numero di righe:"
@@ -3870,7 +3909,7 @@ msgstr ""
"possibilmente, essere rimosso."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Server"
@@ -3881,34 +3920,13 @@ msgstr "Server"
msgid "View"
msgstr "Vista"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struttura"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4003,8 +4021,8 @@ msgstr "Colonne centrali"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Database"
@@ -4107,7 +4125,7 @@ msgid "Recent"
msgstr "Recente"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Tabelle preferite"
@@ -4176,16 +4194,6 @@ msgstr "Join"
msgid "Sorting"
msgstr "Ordinando"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabelle"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Coordinatore delle transazioni"
@@ -4761,7 +4769,7 @@ msgstr "Dimensione massima: %s%s"
msgid "MySQL said: "
msgstr "Messaggio di MySQL: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Spiega SQL"
@@ -4778,7 +4786,7 @@ msgstr "Spiegazione Analisi a %s"
msgid "Without PHP Code"
msgstr "Senza codice PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Crea il codice PHP"
@@ -4891,17 +4899,6 @@ msgstr "Usa questo valore"
msgid "Rows"
msgstr "Righe"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Dati"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5065,7 +5062,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Metodo di autenticazione impostato nella configurazione non valido:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5077,24 +5074,24 @@ msgstr ""
"['SessionTimeZone'][/em]. Al momento phpMyAdmin sta usando la timezone "
"predefinita sul server."
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "Errore: token non corrispondente"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "Tentativo di sovrascrivere GLOBALS"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "possibile exploit"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "chiave numerica rilevata"
@@ -5148,7 +5145,6 @@ msgid "display column"
msgstr "visualizza campo"
#: libraries/config.values.php:102
-#| msgid "Welcome to %s"
msgid "Welcome"
msgstr "Benvenuto"
@@ -5319,7 +5315,7 @@ msgid "Set value: %s"
msgstr "Imposta valore: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Ripristinare valori predefiniti"
@@ -5722,7 +5718,8 @@ msgstr "Conferma query DROP"
#: libraries/config/messages.inc.php:86
msgid ""
"Log SQL queries and their execution time, to be displayed in the console"
-msgstr "Query Log SQL e loro tempo di esecuzione, da visualizzare nella console"
+msgstr ""
+"Query Log SQL e loro tempo di esecuzione, da visualizzare nella console"
#: libraries/config/messages.inc.php:89
msgid "Tab that is displayed when entering a database."
@@ -5797,7 +5794,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Massimo tempo di esecuzione"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr "Utilizzare l'istruzione di %s"
@@ -5806,7 +5803,7 @@ msgstr "Utilizzare l'istruzione di %s"
msgid "Save as file"
msgstr "Salva con nome"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Codifica dei caratteri del file"
@@ -5833,15 +5830,15 @@ msgstr "Compressione"
msgid "Put columns names in the first row"
msgstr "Metti i nomi dei campi nel primo rigo"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Campi limitati da"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "Campi prefissati con"
@@ -5857,14 +5854,14 @@ msgstr "Sostituisci NULL con"
msgid "Remove CRLF characters within columns"
msgstr "Rimuovi i caratteri CRLF dai campi"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "Campi terminati da"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "Linee terminate con"
@@ -5934,7 +5931,7 @@ msgid "Save on server"
msgstr "Salva sul server"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Sovrascrivi file(s) esistente/i"
@@ -5951,8 +5948,8 @@ msgstr "Aggiungi valore AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Racchiudi i nomi di tabelle e di campi con virgolette"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "Modalità di compatibilità SQL"
@@ -6072,15 +6069,15 @@ msgid "Customize browse mode."
msgstr "Personalizza modalità di navigazione."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "Personalizza le opzioni predefinite."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6108,7 +6105,7 @@ msgstr "Esporta i predefiniti"
msgid "Customize default export options."
msgstr "Personalizza le opzioni di esportazione predefinite."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Caratteristiche"
@@ -6155,40 +6152,52 @@ msgstr "Pannello di navigazione"
msgid "Customize appearance of the navigation panel."
msgstr "Personalizza l'aspetto del pannello di navigazione."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Pannello di navigazione"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Personalizza pannello di navigazione"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Server"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "Opzioni di visualizzazione dei server."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "Opzioni di visualizzazione delle tabelle."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Pannello principale"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Altre opzioni principali"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "Altre impostazioni."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Titoli delle pagine"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
@@ -6197,11 +6206,11 @@ msgstr ""
"[doc@faq6-27]documentation[/doc] per vedere delle stringhe che possono "
"essere utilizzate per ottenere dei valori speciali."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Sicurezza"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6209,23 +6218,23 @@ msgstr ""
"Si prega di notare che phpMyAdmin é solo un'interfaccia e le sue "
"funzionalità non limitano MySQL."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Impostazioni di base"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Autenticazione"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "Impostazioni di autenticazione."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Configurazione del server"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
@@ -6233,15 +6242,15 @@ msgstr ""
"Configurazione avanzata del server, non cambiare queste opzioni se non sai a "
"cosa servono."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "Inserisci i parametri di connessione al server."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Configurazione di memorizzazione"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6251,11 +6260,11 @@ msgstr ""
"alle funzionalitá supplementari, vedi [doc@linked-tables]memorizzazione "
"della configurazione di phpMyAdmin[/doc] nella documentazione."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Monitoriaggio dei cambiamenti"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6263,112 +6272,112 @@ msgstr ""
"Monitoraggio dei cambiamenti effettuati al database. Richiede la "
"memorizzazione della configurazione di phpMyAdmin."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Personalizza le opzioni di esportazione"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Personalizza le opzioni predefinite di importazione"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Personalizza pannello di navigazione"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Personalizza pannello principale"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "Query SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "Riquadro per query SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "Personalizza i collegamenti mostrati nei riquadri per query SQL."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "Impostazioni query SQL."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Avvio"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "Personalizza la pagina benvenuto."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Struttura del database"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
"Seleziona quali dettagli mostrare nella struttura del database (lista delle "
"tabelle)."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Struttura della tabella"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "Impostazioni per la struttura delle tabelle (lista delle colonne)."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Schede"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "Seleziona il funzionamento delle tabulazioni."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Visualizza lo schema relazionale"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Dimensioni carta"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Campi di testo"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "Personalizza le opzioni dei campi di input."
# I think "Texy" is a mistake because on KB "y" is close to "t"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Testo! testo"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Personalizza le opzioni predefinite"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Avviso"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Disabilita alcuni degli avvisi mostrati da phpMyAdmin."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6376,15 +6385,15 @@ msgstr ""
"Abilita compressione [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] per le "
"operazioni di importazione ed esportazione."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Parametri aggiuntivi per iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6392,11 +6401,11 @@ msgstr ""
"Se impostato, phpMyAdmin continuerá a processare le query con istruzioni "
"multiple anche se una di queste fallisce."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignore errori delle istruzioni multiple"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6407,27 +6416,27 @@ msgstr ""
"buon modo di importare grandi file, tuttavia potrebbe interrompere le "
"transazioni."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Importazione parziale: consenti interruzione"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Non interrompere su errore durante un operazione di INSERT"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr "Aggiungi ON DUPLICATE KEY UPDATE"
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
"Aggiorna i dati quando vengono trovate chiavi duplicate durante "
"l'importazione"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6435,69 +6444,69 @@ msgstr ""
"Formato predefinito; notare che questa lista dipende dalla posizione "
"(database, tabella) e solo SQL é sempre disponibile."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Formato del file importato"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Usa parola chiave LOCAL"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "I nomi dei campi sulla prima riga"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Non importare righe vuote"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importa valute ($5.00 a 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importa percentuali come valori decimali (12.00% a .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "Numero di query da saltare dall'inizio."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Importazione parziale: ignora query"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Non usare AUTO_INCREMENT per il valore zero"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Stato iniziale per i dispositivi di scorrimento"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "Il numero massimo di righe che è possibile inserire in una volta."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Il numero di righe inserite"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Il numero massimo di caratteri mostrati in qualsiasi campo non-numerico "
"nella vista di navigazione."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Limita i caratteri dei campi"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6508,11 +6517,11 @@ msgstr ""
"opzione é impostata a FALSE è facile dimenticare di uscire anche dagli altri "
"server, quando si é connessi a multipli server."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Elimina tutti i cookie al logout"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
@@ -6520,11 +6529,11 @@ msgstr ""
"Stabilisci se il login precedente deve essere ricordato o meno, nel modo di "
"autenticazione [kbd]cookie[/kbd]."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Ricorda nome utente"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6536,50 +6545,50 @@ msgstr ""
"solo per la sessione esistente, e verrá rimorro al momento della chiusura "
"della finestra del browser. Questo é consigliato per ambienti di sfiducia."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Store del cookie di login"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Stabilisce per quanto tempo (in secondi) un cookie di login è valido."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Validitá per il cookie di login"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Raddoppia la dimensione dell'area di testo per campi LONGTEXT."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Un area di testo piú grande per LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
"Il numero massimo di caratteri utilizzati per visalizzare una query SQL."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Lunghezza massima per visualizzazione SQL"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Gli utenti non possono impostare un valore maggiore"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
"Il numero massimo di database da visualizzare nella lista dei database."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Massimi numero dei database"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
@@ -6587,11 +6596,11 @@ msgstr ""
"Il numero di elementi che possono essere visualizzati in ogni pagina al "
"primo livello dell'albero di navigazione."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "Numero massimo di elementi al primo livello"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
@@ -6599,11 +6608,11 @@ msgstr ""
"Il numero di elementi che possono essere visualizzati in ogni pagina "
"dell'albero di navigazione."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "Numero massimo di elementi nel ramo"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6612,19 +6621,19 @@ msgstr ""
"risultati contengono ulteriori righe i collegamenti \"Precedente\" e "
"\"Seguente\" saranno mostrati."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Il massimo numero di righe da visualizzare"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "Il numero massimo di tabelle da visualizzare nella lista di tabelle."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Il massimo numero di tabelle"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6632,43 +6641,43 @@ msgstr ""
"Il numero massimo di byte che uno script può allocare, ad esempio [kbd]32M[/"
"kbd] ([kbd]0[/kbd] per nessun limite)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Limite memoria"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
"Nel pannello di navigazione, sostituisce l'albero del database con un "
"selettore"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr "Mostra la navigazione tra i database in forma di albero"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
"Collegamento con il pannello principale evidenziando il database o la "
"tabella correnti."
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "Mostra logo nel pannello di navigazione."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Visualizza logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "URL a cui punta il logo del logo nel pannello di navigazione."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "URL del collegamento per il logo"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6676,29 +6685,29 @@ msgstr ""
"Apri i link nella finestra principale ([kbd]main[/kbd]) o in una finestra "
"nuova ([kbd]new[/kbd])."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Destinazione del collegamento per il logo"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
"Visualizza la scelta del server nella parte superiore del pannello di "
"navigazione."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Visalizza la selezione dei server"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Destinazione per l'icona di accesso veloce"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr "Destinazione per la seconda icona di accesso veloce"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6706,17 +6715,17 @@ msgstr ""
"Numero minimo di elementi (tabelle, viste, procedure ed eventi) per "
"visualizzare il riquadro di filtraggio."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Numero minimo di elementi per visualizzare il riquadro di filtraggio"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
"Numero minimo di database per visualizzare il riquadro di filtraggio dei "
"database"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
@@ -6724,107 +6733,167 @@ msgstr ""
"Raggruppa gli elementi nell'albero della navigazione (determinato dal "
"separatore definito nella sezione Database e Tabelle qui sopra)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "Raggruppa elementi nell'albero"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "Stringa che separa i database in diversi livelli dell'albero."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Separatore dell'albero database"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "Stringa che separa le tabelle in diversi livelli dell'albero."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Separatore dell'albero di tabelle"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Massima profonditá per l'albero delle tabelle"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "Evidenzia il server sotto il cursore del mouse."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Abilita evidenziamento"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
"Se consentire la possibilità di espandere l'albero nel pannello di "
"navigazione."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr "Abilita l'espansione dell'albero di navigazione"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "Mostra/Nascondi la lista delle tabelle"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr ""
+"Se consentire la possibilità di espandere l'albero nel pannello di "
+"navigazione."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Mostra le versioni"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Mostra la navigazione tra i database in forma di albero"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Mostra i campi delle funzioni"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Visualizza processi in esecuzione"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Mostra le versioni"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show databases navigation as tree"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Mostra la navigazione tra i database in forma di albero"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Numero massimo di tabelle usate di recente; imposta 0 per disabilitare."
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Numero massimo di tabelle preferite; imposta 0 per disabilitare."
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Tabelle utilizzate recentemente"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr "Questi sono i collegamenti per Modifica, Copia ed Elimina."
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Dove mostrare i collegamenti per le righe delle tabelle"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr "Se visualizzare i link di riga anche in assenza di una chiave univoca."
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr "Mostra comunque i link di riga"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
"Utilizza l'ordine naturale per ordinare i nomi delle tabelle e dei database."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Ordine naturale"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "Usa solo icone, solo testo o entrambi."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Barra di navigazione delle tabelle"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"Usa il buffer di uscita GZip per una maggiore velocità nei trasferimenti via "
"HTTP."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "utilizza il buffer di uscita GZip"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6832,19 +6901,19 @@ msgstr ""
"[kbd]SMART[/kbd] - ad esempio ordine decrescente per i campi di tipo TIME, "
"DATE, DATETIME e TIMESTAMP, ordine crescente altrimenti."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Ordinamento predefinito"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "Usa connessioni persistenti per i database MySQL."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Connessione persistente"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6854,11 +6923,11 @@ msgstr ""
"dettagli della Struttura dei database, se qualche tabella necessaria per "
"memorizzare la configurazione di phpMyAdmin non viene trovata."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Mancano le tabelle di configurazione di phpMyAdmin"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
@@ -6866,11 +6935,11 @@ msgstr ""
"Disabilita l'avviso predefinito che viene visualizzato se è rilevata una "
"differenza tra la libreria MySQL e il server."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "Avviso differenza Server/libreria"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6879,27 +6948,27 @@ msgstr ""
"Struttura se una tabella contiene campi i cui nomi sono parole riservate in "
"MySQL."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "Avviso parola riservata in MySQL"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Come visualizzare le linguette dei menu"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "Come visualizzare i collegamenti a diverse azioni"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Disabilita l'opzione di modifica dei campi BLOB e BINARY."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Proteggi campi binari"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6910,110 +6979,110 @@ msgstr ""
"disabilitata, questa utilizzera funzioni JS per visualizzare la cronologia "
"delle query (persa alla chiusura della finstra)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Cronologia delle query permanente"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "Numero di query conservate in cronologia."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Lunghezza per la cronologia delle query"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Seleziona le funzioni che saranno usate per la conversione dell'insieme di "
"caratteri."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Motore di registrazione"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
"L'ordine delle tabelle é memorizzato durante la navigazione delle tabelle."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Ricorda l'ordine delle tabelle"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
"Criterio di ordinamento predefinito per le tabelle con chiave primaria."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "Ordinamento predefinito per la chiave primaria"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"Ripeti le intestazioni ogni X celle, [kbd]0[/kbd] disattiva questa "
"funzionalità."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Ripeti intestazioni"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "Modifica griglia: azione di innesco"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr "Visualizzazione relazionale"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr "Per le Opzioni di visualizzazione"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Modifica griglia: salva all'istante tutte le celle modificate"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "Cartella in cui le esportazioni possono essere salvate sul server."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Salva cartella"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "Lasciare vuoto se non usato."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Ordine dei permessi del host"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "Lasciare vuoto per i valori predefiniti."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Regole dei permessi del host"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Consenti login senza la parola chiave"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Consenti login per utenti root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr "Timezone della sessione"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
@@ -7021,16 +7090,16 @@ msgstr ""
"Imposta la timezone effettiva, potrebbe essere diversa da quella del tuo "
"server database"
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
"Il nome del Basic Auth Realm da visualizzare quando si esegue HTTP Auth."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "Realm HTTP"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -7040,19 +7109,19 @@ msgstr ""
"com]autenticazione con hardware SweKey[/a] (non salvata nella cartella "
"document root; percorso consigliato: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "File di configurazione SweKey"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "Metodo di autenticazione da usare."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Tipo di autenticazione"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7060,11 +7129,11 @@ msgstr ""
"Lascia vuoto per disattivare il supporto per i [a@http://wiki.phpmyadmin.net/"
"pma/bookmark]segnalibri[/a], consigliato: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Tabella dei segnalibri"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -7072,31 +7141,31 @@ msgstr ""
"Lascia vuoto per disattivare i commenti/tipi mime per i campi, consigliato: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Tabella delle informazioni sui campi"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "Comprimi la connessione al server MySQL."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Comprimi la connessione"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Come connettersi al server, lascia [kbd]tcp[/kbd] se non sei sicuro."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Tipo di connessione"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Parola chiave per l'utente di controllo"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7105,11 +7174,11 @@ msgstr ""
"ulteriori informazioni disponibili nella [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Utente di controllo"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
@@ -7117,11 +7186,11 @@ msgstr ""
"Un host alternativo per memorizzare la configurazione; lasciare in bianco "
"per utilizzare l'host già definito."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Host di controllo"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7131,15 +7200,15 @@ msgstr ""
"configurazione; lasciare in bianco per usare la porta di default, ovvero la "
"porta già definita, se controlhost è posto uguale a host."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "Porta di controllo"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Nascondi i database corrispondenti all'espressione regolare (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7148,15 +7217,15 @@ msgstr ""
"bugs/2606/]PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Disabilita l'utilizzo di INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Nascondi i database"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7164,23 +7233,23 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per la cronologia delle query SQL, "
"consigliato: [kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "Tabella di cronologia delle query SQL"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "Il nome dell'host su cui è in esecuzione il server MySQL."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Nome host del server"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Url di logout"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
@@ -7188,15 +7257,15 @@ msgstr ""
"Limita il numero delle preferenze di tabella che sono memorizzate nel "
"database, i record più vecchi sono rimossi automaticamente."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Numero massimo di preferenze di tabella da memorizzare"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "Tabella delle ricerche QBE (Query By Example) salvate"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
@@ -7204,11 +7273,11 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per le ricerche QBE (Query By "
"Example) salvate, consigliato: [kbd]pma__savedsearches[/kbd]."
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr "Tabella dei campi centrali"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
@@ -7216,15 +7285,15 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto dei campi centrali, consigliato: "
"[kbd]pma__central_columns[/kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "Prova a connetterti senza password."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Effettua connessione senza la parola chiave"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7234,30 +7303,30 @@ msgstr ""
"rovesciata '\\' se vuoi utilizzarli nel loro senso letterale, ad esempio "
"[kbd]'my\\_db'[/kbd] e non [kbd]'my_db'[/kbd]."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Mostra solo i database dalla lista"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "Lascia vuoto se non è utilizzato config auth."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Parola chiave per config auth"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"Lascia vuoto disabilitare il supporto per PDF schema, consigliato: "
"[kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "Schema PDF: tabella delle pagine"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7267,22 +7336,22 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] per tutti dettagli. Lascia "
"vuoto per disabilitarne il supporto. Consigliato: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Nome del database"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Porta su cui il server MySQL è in ascolto, lascia vuoto per il valore "
"predefinito."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Porta del server"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
@@ -7291,11 +7360,11 @@ msgstr ""
"recente tra una sessione di lavoro e l'altra, consigliato: [kbd]pma__recent[/"
"kbd]."
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Tabella utilizzata recentemente"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
@@ -7303,11 +7372,11 @@ msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle tabelle preferite tra "
"una sessione di lavoro e l'altra, consigliato: [kbd]pma__recent[/kbd]."
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr "Tabelle preferite"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
@@ -7315,11 +7384,11 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per [a@http://wiki.phpmyadmin.net/"
"pma/relation]relation-links[/a], consigliato: [kbd]pma__relation[/kbd]."
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Tabella relazionale"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7327,33 +7396,33 @@ msgstr ""
"Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di "
"autenticazione[/a] per un esempio."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Nome della sessione di signon"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "L'URL di signon"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Socket sul quale il server MySQL è in ascolto, lascia vuoto per il valore "
"predefinito."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Socket del server"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "Abilita SSL per la connessione al server MySQL."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Utilizza SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7361,11 +7430,11 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto dello schema PDF, consigliato: "
"[kbd]pma__table_coords[/kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr "Designer e schema PDF: coordinate delle tabelle"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
@@ -7373,11 +7442,11 @@ msgstr ""
"Tabella che descrive i campi di visualizzazione, lascia vuoto per "
"disabilitarne il supporto; consigliato: [kbd]pma__table_info[/kbd]."
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Visualizza i campi della tabella"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
@@ -7386,11 +7455,11 @@ msgstr ""
"dell'interfaccia utenti tra le sessioni di lavoro, consigliato: "
"[kbd]pma__table_uiprefs[/kbd]."
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Tabella di memorizzazione delle preferenze dell'interfaccia utente"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7398,11 +7467,11 @@ msgstr ""
"Se aggiungere un instruzione DROP DATABASE IF EXISTS sulla prima linea del "
"log quando viene creato un database."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Aggiungi DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7410,11 +7479,11 @@ msgstr ""
"Se aggiungere un instruzione DROP TABLE IF EXISTS sulla prima linea del log "
"quando viene creato una tabella."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Aggiungi DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7422,21 +7491,21 @@ msgstr ""
"Se aggiungere un instruzione DROP VIEW IF EXISTS sulla prima linea del log "
"quando viene creata una vista."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Aggiungi DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definisce la lista delle istruzioni the l'auto-creazione utilizza per le "
"nuove versioni."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Istruzioni da monitorare"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7444,11 +7513,11 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per il monitoraggio delle query "
"SQL, consigliato: [kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "Tabella de monitoraggio delle query SQL"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7456,11 +7525,11 @@ msgstr ""
"Se il meccanismo di monitoraggio crea versioni per tabelle e viste "
"automaticamente."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Crea versioni automaticamente"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7468,11 +7537,11 @@ msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle preferenze degli "
"utenti nel database, consigliato: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Tabella di memorizzazione delle preferenze degli utenti"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7482,11 +7551,11 @@ msgstr ""
"abilitare la funzione menu configurabile; lasciando uno dei due vuoto si "
"disattiva questa funzione, suggerito: [kbd]pma__users[/kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "Tabella utenti"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7496,11 +7565,11 @@ msgstr ""
"funzione menu configurabile; lasciando uno dei due vuoto si disattiva questa "
"funzione, suggerito: [kbd]pma__usergroups[/kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "Tabella gruppi utenti"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7508,15 +7577,15 @@ msgstr ""
"Lascia vuoto per disabilitare la possibilità di nascondere/mostrare gli "
"elementi di navigazione, consigliato: [kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "Tabella dei dati di navigazione nascosta"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Utente per il config auth"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7524,19 +7593,19 @@ msgstr ""
"Una descrizione di facile utilizzo di questo server. Lascia vuoto per "
"visualizzare il nome host, invece."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Nome completo di questo server"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Se visualizzare all'utente un pulsante \"mostra tutte le (righe)\"."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Consenti la visualizzazione di tutte le righe"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7547,56 +7616,56 @@ msgstr ""
"codificata nel file di configurazione; questo non limita la possibilità di "
"eseguire lo stesso comando direttamente."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Mostra il modulo di modifica della parola chiave"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Mostra il modulo di creazione dei database"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
"Mostra o nascondi un campo che visualizza i commenti per tutte le tabelle."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr "Mostra i commenti alla tabella"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
"Mostra o nascondi un campo che visualizza la marcatura temporale (timestamp) "
"di Creazione per tutte le tabelle."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "Mostra la marca temporale di Creazione"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
"Mostra o nascondi un campo che visualizza la marcatura temporale (timestamp) "
"di Ultimo aggiornamento per tutte le tabelle."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "Mostra la marcatura temporale (timestamp) dell'Ultimo aggiornamento"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
"Mostra o nascondi un campo che visualizza la marcatura temporale (timestamp) "
"di Ultimo controllo per tutte le tabelle."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "Mostra la marca temporale dell'ultimo controllo"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
@@ -7604,28 +7673,28 @@ msgstr ""
"Stabilisce se i tipi dei campi dovrebbero essere visualizzati inizialmente "
"nella modalitá di inserimento/modifica."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Mostra i tipi di campi"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
"Visualizza i campi delle funzioni nelle modalità di inserimento/modifica."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Mostra i campi delle funzioni"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "Se mostrare il suggerimento o meno."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Mostra suggerimento"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
@@ -7633,58 +7702,58 @@ msgstr ""
"Mostra un collegamento all'output di [a@http://php.net/manual/function."
"phpinfo.php]phpinfo()[/a]."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Mostra un collegamento a phpinfo()"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Mostra informazioni dettagliate del server MySQL"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
"Definisce se le query SQL generate da phpMyAdmin dovrebbero essere "
"visualizzate."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Mostra query SQL"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
"Definisce se la finestra della query deve stare sullo schermo dopo la "
"conferma."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "Nascondi riquadro query SQL"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
"Consenti la visualizzazione delle statistiche dei database e tabelle (ad "
"esempio, lo spazio utilizzato)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Mostra statistiche"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
"Segna le tabelle utilizzate e consenti la visualizzazione dei database con "
"tabelle bloccate."
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Ignora le tabelle bloccate"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
@@ -7692,11 +7761,11 @@ msgstr ""
"Disabilita l'avviso predefinito che è visualizzato sulla pagina principale "
"se viene rilevato Suhosin."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Avviso Suhosin"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
@@ -7706,11 +7775,11 @@ msgstr ""
"principale se il valore del parametro PHP session.gc_maxlifetime è inferiore "
"al valore di `LoginCookieValidity`."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr "Avviso validità per il cookie di login"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7718,11 +7787,11 @@ msgstr ""
"Dimensione TextArea (colonne) in modalità di modifica, questo valore verrà "
"sottolineato per SQL query textareas (* 2)."
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Campi di aree di testo"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
@@ -7730,31 +7799,31 @@ msgstr ""
"Dimensione dell'area di testo (righe) in modalitá di modifica, questo valore "
"viene incrementato per le aree di testo delle query SQL (*2)."
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Righe nelle aree di testo"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "Titolo della finestra del browser quando un database è selezionato."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "Titolo della finestra del browser quando niente è selezionato."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Titolo Predefinito"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "Titolo della finestra del browser quando un server è selezionato."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr "Titolo della finestra del browser quando una tabella è selezionata."
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7766,28 +7835,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente dal proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]."
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista dei proxy di fiducia per l'accettazione/rifiuto degli IP"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
"La cartella sul server dove è possibile caricare i file per l'importazione."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Cartella di upload"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "Consenti la ricerca all'interno di un intero database."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Utilizza la ricerca dei database"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7795,28 +7864,28 @@ msgstr ""
"Quando disabilitato, gli utenti non possono impostare nessuna delle opzioni "
"sottostanti, indipendentemente dalla casella di controllo sulla destra."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "Abilita la tabulazione per Sviluppatori nelle impostazioni"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Controlla l'ultima versione"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Abilita la verifica della versione più recente sulla pagina principale di "
"phpMyAdmin."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Controllo versione"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7828,11 +7897,11 @@ msgstr ""
"di questo se il server in cui è installato phpMyAdmin non ha accesso diretto "
"a Internet. Il formato è: \"hostname:portnumber\"."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "Url Proxy"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
@@ -7843,19 +7912,19 @@ msgstr ""
"utente, verrà eseguita l'autenticazione di base. Nessun altro tipo di "
"autenticazione è attualmente supportato."
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "Nome utente Proxy"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "La password per l'autenticazione con il proxy."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "Password Proxy"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7863,36 +7932,36 @@ msgstr ""
"Abilita la compressione [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] per le operazioni di importazione ed esportazione."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "Inserisci la tua chiave pubblica per il servizio di dominio reCaptcha."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "Chiave pubblica per reCaptcha"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
"Immettere la propria chiave privata per il servizio di dominio reCaptcha."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "Chiave privata per reCaptcha"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "Scegli l'azione di default quando invii i rapporti d'errore."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "Invia rapporti di errore"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7900,11 +7969,11 @@ msgstr ""
"Le query verranno eseguite premendo Invio (invece di Ctrl+Invio). Le nuove "
"linee saranno inserite con MAIUSC+INVIO."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr "INVIO esegue query in console"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
@@ -7912,7 +7981,7 @@ msgstr ""
"Abilitare la modalità configurazione Zero che consente di configurare "
"automaticamente tabelle di memorizzazione di phpMyAdmin."
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "Abilita la modalità Zero Configuration"
@@ -7938,44 +8007,44 @@ msgstr "Autenticazione HTTP"
msgid "Signon authentication"
msgstr "Autenticazione via signon"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Foglio di calcolo OpenDocument"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Veloce"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Personalizzazato"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Opzioni di esportazione per database"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV per dati MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "Testo OpenDocument"
@@ -8006,7 +8075,7 @@ msgstr ""
"Si sta utilizzando l'estensione mysql che è deprecata in phpMyAdmin. Si "
"consiglia di installare l'estensione mysqli."
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
"Non è stato possibile caricare i plugin dello schema, controlla la tua "
@@ -8073,7 +8142,7 @@ msgstr "Crea tabelle"
msgid "Number of columns"
msgstr "Numero dei campi"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"Non è stato possibile di caricare i plugin di esportazione, controlla la tua "
@@ -8118,11 +8187,11 @@ msgstr "Tabelle:"
msgid "Format:"
msgstr "Formato:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Opzioni specifiche al formato:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8130,52 +8199,52 @@ msgstr ""
"Scorri verso il basso per inserire le opzioni per il formato selezionato e "
"ignora le opzioni per gli altri formati."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Conversione di Codifica:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Righe:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Esegui il dump di alcune righe"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Riga iniziale:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Dump di tutte le righe"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Output:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Salva sul server nella cartella %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Modello per nomi dei file:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ diventerá il nome del server"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ diventerá il nome del database"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ diventerá il nome della tabella"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8187,64 +8256,76 @@ msgstr ""
"le seguenti trasformazioni: %3$s. Il testo rimanente resterà invariato. Vedi "
"la %4$sFAQ%5$s per i dettagli."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "usa questo per esportazioni future"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Set di caratteri del file:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Compressione:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "compresso con zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "compresso con gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Salva l'output come testo"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Esporta le viste come tabelle"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "Esporta le intestazioni della tabella"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr "Rinomina database/tabelle/campi esportati"
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Salva l'output in un file"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr "Salta le tabelle più grandi di"
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "Seleziona database"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "Seleziona tabella"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Nome del nuovo database"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "Nome nuova tabella"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "Vecchio nome campo"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "Nuovo nome campo"
@@ -8874,7 +8955,7 @@ msgid "Create an index on %s columns"
msgstr "Crea un indice su %s campi"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Nascondi"
@@ -9010,11 +9091,6 @@ msgstr "Da"
msgid "To"
msgstr "A"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Invia"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "Aggiungi un prefisso alla tabella:"
@@ -9228,22 +9304,28 @@ msgstr ""
"Si è verificato un errore durante il caricamento del display di navigazione"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Group name:"
+msgid "Groups:"
+msgstr "Nome del gruppo:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "Eventi:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "Funzioni:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "Procedure:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "Tabelle:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "Viste:"
@@ -9267,7 +9349,7 @@ msgstr "Impostazioni pannello di navigazione"
msgid "Reload navigation panel"
msgstr "Ricarica il pannello di navigazione"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
@@ -9276,27 +9358,27 @@ msgstr ""
"ridurre le prestazioni. Valuta se disabilitare il raggruppamento oggetti nel "
"pannello di navigazione."
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s risultato trovato"
msgstr[1] "%s risultati trovati"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "Filtra i database in base al nome o all'espressione regolare (regex)"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Cancella il fast filter"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "Filtra in base al nome o all'espressione regolare (regex)"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "Collassa tutto"
@@ -9330,7 +9412,7 @@ msgstr "Nuovo"
msgid "Database operations"
msgstr "Opzioni di database"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "Mostra elementi nascosti"
@@ -10451,7 +10533,7 @@ msgstr "Creazione:"
#: libraries/plugins/export/ExportSql.class.php:1331
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1011
msgid "Last update:"
-msgstr "Ultimo cambiamento:"
+msgstr "Ultimo aggiornamento:"
#: libraries/plugins/export/ExportSql.class.php:1344
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1018
@@ -10565,13 +10647,13 @@ msgstr "Nomi dei campi: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Parametro non valido per importazione CSV: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10581,13 +10663,13 @@ msgstr ""
"scritti correttemente, sono separati da virgole e non racchiusi in "
"virgolette."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Formato non valido per l'input CSV alla linea %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Il numero dei campi non é valido nell'input CSV alla linea %d."
@@ -10984,47 +11066,47 @@ msgstr "Formatta il testo come JSON con evidenziazione della sintassi."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formatta il testo come XML con evidenziazione della sintassi."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Errore: relazione già esistente."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr "La relazione FOREIGN KEY è stata aggiunta."
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Errore: non è stato possibile aggiungere la relazione FOREIGN KEY!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr "Errore: manca l'indice su campo/i."
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "Errore: Le funzionalità relazionali sono disabilitate!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr "La relazioni interna è stata aggiunta."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr "Errore: non è stato possibile aggiungere la relazione interna!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "La relazione FOREIGN KEY è stata rimossa."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Errore: non è stato possibile rimuovere la relazione FOREIGN KEY!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "Errore: non è stato possibile rimuovere la relazione interna!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "La relazione interna è stata rimossa."
@@ -11111,20 +11193,26 @@ msgstr "Salvataggio ricerche Query-By-Example"
msgid "Managing Central list of columns"
msgstr "Gestione lista Centrale dei campi"
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Ricorda l'ordine delle tabelle"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Passi veloci per l'installazione delle funzionalità avanzate:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "Crea le tabelle necessarie con %screate_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Crea l'utente pma e dagli accesso a queste tabelle."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11132,17 +11220,17 @@ msgstr ""
"Attiva funzionalità avanzate nel file di configuratione (config.inc."
"php), per esempio partendo da config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Rieffettua il login in phpMyAdmin per caricare il file della configurazione "
"aggiornato."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "nessuna descrizione"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
@@ -11153,7 +11241,7 @@ msgstr ""
"database per impostare in quel database la memorizzazione della "
"configurazione di phpMyAdmin."
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
@@ -11162,14 +11250,14 @@ msgstr ""
"%sCrea%s un database denominato 'phpmyadmin' e imposta la configurazione di "
"storage phpMyAdmin lì."
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
"%sCreate%s la configurazione salvata di phpMyAdmin nel database corrente."
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11930,7 +12018,7 @@ msgstr "Non ci sono eventi da visualizzare."
msgid "Ignoring unsupported language code."
msgstr "Il codice in linguaggio non supportato viene ignorato."
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "Server corrente:"
@@ -13785,9 +13873,6 @@ msgstr "Visualizzo comel codice PHP"
#: libraries/sql.lib.php:1767
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, checkbox, "
"Edit, Copy and Delete features are not available. %s"
@@ -13797,9 +13882,6 @@ msgstr ""
#: libraries/sql.lib.php:1778
#, php-format
-#| msgid ""
-#| "Current selection does not contain a unique column. Grid edit, checkbox, "
-#| "Edit, Copy and Delete features are not available."
msgid ""
"Current selection does not contain a unique column. Grid edit, Edit, Copy "
"and Delete features may result in undesired behavior. %s"
@@ -16763,9 +16845,6 @@ msgstr "concurrent_insert è impostato a 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Cancella dati di tracciamento per questa tabella"
-#~ msgid "Show versions"
-#~ msgstr "Mostra le versioni"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18147,9 +18226,6 @@ msgstr "concurrent_insert è impostato a 0"
#~ msgid "Reset"
#~ msgstr "Reset"
-#~ msgid "Show processes"
-#~ msgstr "Visualizza processi in esecuzione"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Riavvia"
diff --git a/po/ja.po b/po/ja.po
index 8d8a3deb90..1043615a24 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-03-28 04:08+0200\n"
"Last-Translator: Hiroshi Chiyokawa
to toggle column's visibility"
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "クリックでカラムの表示/非表示
ができるドロップダウンを表示"
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "すべて表示"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2398,159 +2441,159 @@ msgstr ""
"ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合"
"があります。"
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "元の位置"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "キャンセル"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "中断"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "インポートのデフォルト"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
msgstr "ログファイルの閾値"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "最初にデータベースを選択してください"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "ほとんどの値は、直接ダブルクリック
することでも、編集できます。"
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "ほとんどの値は、直接クリック
することでも、編集できます。"
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "リンク先へ移動する:"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Copy column name"
msgid "Copy column name."
msgstr "カラム名のコピー。"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "右クリックでカラム名をクリップボードにコピーしてください。"
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "パスワードを生成する"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "生成する"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "パスワードを変更する"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "その他"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "パネルを表示"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "パネルを隠す"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show hidden navigation tree items."
msgstr "左のフレーム内にロゴを表示します。"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main frame"
msgid "Link with main panel"
msgstr "メインフレームの詳細設定"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main frame"
msgid "Unlink from main panel"
msgstr "メインフレームの詳細設定"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "テーブル"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "ビュー"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "プロシージャ"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "イベント"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "関数"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "リクエストされたページが履歴にありません。おそらく有効期限切れです。"
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2560,476 +2603,476 @@ msgstr ""
"します。最新バージョンは %s で、%s にリリースされています。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", 最終安定バージョン:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "最新版"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "ビューを作成する"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "エラー報告を送信"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "エラー報告を送信"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr "JavaScript の致命的なエラーが発生しました。エラー報告を送信しますか?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "報告の設定の変更"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "報告の詳細を表示"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "全て無視"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "このクエリをもう一度実行しますか?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "このブックマークを本当に削除しますか?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Executed queries"
msgid "%s queries executed %s times in %s seconds."
msgstr "実行されたクエリ"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "テーブルのコメント"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "検索結果を隠す"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "前月"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "翌月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "今日"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "1 月"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "2 月"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "3 月"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "4 月"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "5 月"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "6 月"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "7 月"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "8 月"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "9 月"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "10 月"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "11 月"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "12 月"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "1 月"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "2 月"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "3 月"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "4 月"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "5 月"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "6 月"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "12 月"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "日"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "月"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "火"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "水"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "木"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "金"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "土"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "土"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "月"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "火"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "水"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "木"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "金"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "土"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "週"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-year-month"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "年"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "時"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "分"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "秒"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "テキスト入力項目の値を利用する"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "有効なポート番号を入力してください!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "有効なポート番号を入力してください!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "有効なポート番号を入力してください!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "正しい長さを入力してください!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "正しい長さを入力してください!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "有効なポート番号ではありません"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "有効なポート番号を入力してください!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3101,18 +3144,18 @@ msgstr "/ 時"
msgid "per day"
msgstr "/ 日"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "設定ファイル (%s) は存在しますが、読み込むことができません。"
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"設定ファイルのパーミッションが正しくありません。誰でも書き込み可能になってい"
"ます!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "フォントサイズ"
@@ -3133,7 +3176,7 @@ msgid "Requery"
msgstr "サブクエリ"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3354,7 +3397,7 @@ msgid "Count:"
msgstr "カラム"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3563,7 +3606,7 @@ msgstr "表示中のブックマーク"
msgid "Delete bookmark"
msgstr "リレーションを削除"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3571,20 +3614,20 @@ msgstr ""
"サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま"
"せん)。"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "サーバが応答しません。"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
"データベースを含んでいるディレクトリのパーミッションを確認してください。"
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "詳細…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。"
@@ -3659,6 +3702,16 @@ msgstr "各単語は空白文字 (\" \") で区切ってください。"
msgid "Inside tables:"
msgstr "検索するテーブル:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "全選択"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "全選択解除"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "検索するカラム:"
@@ -3716,7 +3769,7 @@ msgid "All"
msgstr "全部"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "行数:"
@@ -4037,7 +4090,7 @@ msgstr ""
"れません。"
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "サーバ"
@@ -4048,34 +4101,13 @@ msgstr "サーバ"
msgid "View"
msgstr "ビュー"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "構造"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4172,8 +4204,8 @@ msgstr "textarea の 1 行の文字数"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "データベース"
@@ -4285,7 +4317,7 @@ msgid "Recent"
msgstr "リセット"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4364,16 +4396,6 @@ msgstr "結合"
msgid "Sorting"
msgstr "ソート"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "テーブル"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "トランザクションコーディネータ"
@@ -4944,7 +4966,7 @@ msgstr "最長: %s%s"
msgid "MySQL said: "
msgstr "MySQL のメッセージ: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "EXPLAIN で確認"
@@ -4961,7 +4983,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "PHP コードを省略"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP コードの作成"
@@ -5078,17 +5100,6 @@ msgstr "この値を利用する"
msgid "Rows"
msgstr "行"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "データ"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5263,7 +5274,7 @@ msgstr "サーバ"
msgid "Invalid authentication method set in configuration:"
msgstr "設定ファイルに無効な認証方法が指定されています:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5271,24 +5282,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s を %s 以降にアップグレードしてください。"
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS 変数が書き換えられている可能性があります"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "なんらかの攻撃をされている可能性があります"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "グローバル変数から数値キーが検出されました"
@@ -5533,7 +5544,7 @@ msgid "Set value: %s"
msgstr "値「%s」を設定"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "デフォルト値に戻す"
@@ -6093,7 +6104,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "最大実行時間"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -6103,7 +6114,7 @@ msgstr "%s コマンドを追加する"
msgid "Save as file"
msgstr "ファイルに保存する"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "ファイルの文字セット"
@@ -6130,17 +6141,17 @@ msgstr "圧縮"
msgid "Put columns names in the first row"
msgstr "1 行目にカラム名を追加する"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Columns enclosed with:"
msgid "Columns enclosed with"
msgstr "カラム囲み記号:"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Columns escaped with:"
msgid "Columns escaped with"
@@ -6158,14 +6169,14 @@ msgstr "NULL の代替文字列:"
msgid "Remove CRLF characters within columns"
msgstr "カラムに含まれている CRLF 文字を取り除く"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "カラムの終端記号"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated with:"
msgid "Lines terminated with"
@@ -6237,7 +6248,7 @@ msgid "Save on server"
msgstr "サーバ上に保存する"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "既存のファイルは上書きする"
@@ -6254,8 +6265,8 @@ msgstr "AUTO_INCREMENT 値を追加する"
msgid "Enclose table and column names with backquotes"
msgstr "テーブル名やカラム名を逆クォートで囲む"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL 互換モード"
@@ -6389,15 +6400,15 @@ msgid "Customize browse mode."
msgstr "表示モードの詳細設定"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "デフォルトオプションの詳細設定。"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6427,7 +6438,7 @@ msgstr "エクスポートのデフォルト"
msgid "Customize default export options."
msgstr "デフォルトのエクスポートオプション詳細設定。"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "機能"
@@ -6483,46 +6494,58 @@ msgstr "ナビゲーションパネル"
msgid "Customize appearance of the navigation panel."
msgstr "ナビゲーションフレームの概観の詳細設定"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "ナビゲーションパネル"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation frame"
+msgid "Customize the navigation tree."
+msgstr "ナビゲーションフレームの詳細設定"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "サーバ"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "サーバの表示オプション"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "テーブル表示オプション."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "メインフレーム"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "他の中心的な設定"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "どこにも該当しない設定"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "ページタイトル"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6535,11 +6558,11 @@ msgstr ""
"ブラウザのタイトルバーのテキストの指定を行います。使用可能な特別な埋め込み変"
"数は[doc@cfg_TitleTable]ドキュメント[/doc]を参照してください。"
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "セキュリティ"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6551,25 +6574,25 @@ msgstr ""
"phpMyAdmin は、ユーザインタフェースだけであり、その機能は MySQL を制限するも"
"のではないことをご了承ください。"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "基本設定"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "認証"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "認証設定"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "サーバ設定"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6581,17 +6604,17 @@ msgstr ""
"高度なサーバ設定。これらのオプションは、よく知らないのであれば変更しないでく"
"ださい。"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "サーバの接続パラメータを入力してください"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "環境保管領域"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
@@ -6605,11 +6628,11 @@ msgstr ""
"追加された機能にアクセスするには phpMyAdmin 環境保管領域を設定してください。"
"ドキュメントの [doc@linked-tables]phpMyAdmin 環境保管領域[/doc]参照。"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "変更追跡機能"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6617,60 +6640,60 @@ msgstr ""
"データベースで行われた変更の追跡機能です。これには、phpMyAdmin 環境保管領域が"
"必要です。"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "エクスポートオプションの詳細設定"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "インポートデフォルトの詳細設定"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
msgstr "ナビゲーションフレームの詳細設定"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "メインフレームの詳細設定"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL クエリ"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL クエリボックス"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "SQL クエリボックスに表示されるリンクの詳細設定"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "SQL クエリの設定"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "スタートアップ"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "スタートアップページの詳細設定。"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "データベースの構造"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
#, fuzzy
#| msgid ""
#| "Choose which details to show in the database structure (list of tables)"
@@ -6678,67 +6701,67 @@ msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr "データベースの構造 (テーブルの一覧) で詳細に表示させるかの選択"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "テーブルの構造"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
#, fuzzy
#| msgid "Settings for the table structure (list of columns)"
msgid "Settings for the table structure (list of columns)."
msgstr "テーブルの構造 (カラムの一覧) における設定"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "タブ"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "タブの動作を選択してください"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "リレーショナルスキーマを表示する"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "用紙サイズ"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "テキスト入力項目"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "テキスト入力項目の詳細設定"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! テキスト"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "デフォルトオプションの詳細設定"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "警告"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "phpMyAdmin で表示される警告の抑制"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6750,15 +6773,15 @@ msgstr ""
"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/"
"Gzip]gzip[/a] 圧縮を有効にします。"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "iconv のための追加パラメータ"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6770,11 +6793,11 @@ msgstr ""
"有効にした場合、クエリの 1 つが失敗しても phpMyAdmin はマルチクエリの実行を続"
"けます。"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "マルチクエリのエラーを無視する"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6784,25 +6807,25 @@ msgstr ""
"大きなファイルをインポートする場合には便利ですが、トランザクションが壊れるこ"
"ともあります。"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "部分インポート(割り込みの許可)"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "INSERT エラーで中断しない"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6814,62 +6837,62 @@ msgstr ""
"デフォルトの形式。このリストは対象(データベース、テーブル)に依存しているの"
"で注意してください。SQL は常に利用可能です。"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "インポートするファイルの形式"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "LOCAL キーワードを使用する"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "1 行目にカラム名を追加する"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "空の行はインポートしない"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "金額は単位を取り除く (例:$5.00 を 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "パーセントは適切な小数に変換する (例:12.00% を .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "先頭から数えたスキップするクエリの数"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "部分インポート(クエリのスキップ)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "折り畳みに対しての初期値"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "1 回で何行まとめて挿入できるか。"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "挿入する行数"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
#, fuzzy
#| msgid ""
#| "Maximum number of characters shown in any non-numeric column on browse "
@@ -6878,11 +6901,11 @@ msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr "表示ページにおいて数値でないカラムの表示文字の最大数"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "カラムの文字制限"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6893,11 +6916,11 @@ msgstr ""
"を外すと、複数のサーバに接続している時、他のサーバからのログアウト作業を忘れ"
"やすくなります。"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "ログアウト時にすべてのクッキーを削除する"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6909,11 +6932,11 @@ msgstr ""
"クッキー認証モードの場合に、前回ログインしたときの状態に戻すかどうかを定義し"
"ます。"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "ログインしたときの状態に戻す"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6925,56 +6948,56 @@ msgstr ""
"のウィンドウが閉じられるとすぐに削除されます。これは、信頼されていない環境で"
"使う場合に推奨します。"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "ログインクッキーの保存期間"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "ログインクッキーの有効期間 (秒数) を定義します。"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "ログインクッキーの有効期間"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "LONGTEXT カラムに対して textarea を 2 倍にします。"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEXT に対しては大きな textarea を使う"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "SQL クエリが表示されているときに使用される文字の最大数"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "表示できる SQL 文の最大の長さ"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "ユーザはこれより高い値を設定することはできません"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of databases displayed in database list."
msgstr "テーブルのリストに表示されるテーブルの最大数"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "データベースの最大数"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -6982,13 +7005,13 @@ msgid ""
"the navigation tree."
msgstr "最初のテーブルを全スキャンした結合の数。"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for input field"
msgid "Maximum items on first level"
msgstr "入力項目の最大サイズ"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
@@ -6996,11 +7019,11 @@ msgid ""
"tree."
msgstr "最初のテーブルを全スキャンした結合の数。"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -7008,21 +7031,21 @@ msgstr ""
"結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンク"
"が表示されます。"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "行の最大表示数"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table list."
msgstr "テーブルのリストに表示されるテーブルの最大数"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "テーブルの最大数"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
@@ -7034,43 +7057,43 @@ msgstr ""
"割り当てが許可されているスクリプトのバイト数。例:[kbd]32M[/kbd] ([kbd]0[/"
"kbd] で制限無し)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "メモリ制限"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show databases navigation as tree"
msgstr "左のフレーム内にロゴを表示します。"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "ナビゲーションパネル内にロゴを表示します。"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "ロゴを表示する"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "ナビゲーションフレームのロゴが指す URL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "ロゴのリンク URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -7078,31 +7101,31 @@ msgstr ""
"リンク先のページをメインウィンドウ ([kbd]main[/kbd]) または新しいウィンドウ "
"([kbd]new[/kbd]) で開く。"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "ロゴリンクのターゲット"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel."
msgstr "左フレームの上部にサーバ選択を表示します。"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "サーバ選択を表示する"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "クイックアクセスアイコンのリンク先"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "クイックアクセスアイコンのリンク先"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid ""
@@ -7110,17 +7133,17 @@ msgid ""
"display a filter box."
msgstr "テーブル表示数を絞るための入力欄が現れる最小のテーブル数"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of items to display the filter box"
msgstr "テーブル表示数を絞るための入力欄が現れる最小のテーブル数"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "データベース表示数を絞るための入力欄が現れる最小のデータベース数"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Only light version; display databases in a tree (determined by the "
@@ -7131,121 +7154,177 @@ msgid ""
msgstr ""
"軽快モードのみ。下の項目で定義する区切りが合った場合、ツリー表示になります。"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
msgstr "ツリーレベルにデータベースを区切るための文字列"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "データベースツリーの区切り"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
msgstr "ツリーレベルにテーブルを区切るための文字列"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "テーブルツリーの区切り"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "テーブルツリーの最大の深さ"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "マウスカーソルの下のサーバ名を強調表示します。"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "強調表示を有効にする"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Enable navigation tree expansion"
msgstr "ナビゲーションバーのアイコン"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Showing tables"
+msgid "Show tables in tree"
+msgstr "テーブルを表示しています"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "左のフレーム内にロゴを表示します。"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "世代を表示する"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "左のフレーム内にロゴを表示します。"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "関数項目を表示する"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "MySQL プロセスの表示"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "世代を表示する"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "左のフレーム内にロゴを表示します。"
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "最近使用したテーブルの最大数。0 で無効になります。"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "最近使用したテーブルの最大数。0 で無効になります。"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "最近使用したテーブル"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
#, fuzzy
#| msgid "These are Edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links."
msgstr "編集、コピー、削除のリンクことです。"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "テーブルの行リンクを表示する場所"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
msgstr "テーブルやデータベースの名前のソートを人間が行うような手法で行います。"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "自然順"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
"「アイコンのみ表示」または「テキストのみ表示」または「アイコン/テキスト両方表"
"示」。"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "テーブルナビゲーションバー"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "HTTP 転送の高速化のために GZip の出力バッファリングを使用します。"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip の出力バッファリング"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7257,21 +7336,21 @@ msgstr ""
"[kbd]SMART[/kbd] とは TIME、DATE、DATETIME、TIMESTAMP 型のカラムに対しては "
"DESC、それ以外は ASC の並び順にします。"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "デフォルトの並び順"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL データベースへの永続的な接続を使用します。"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "永続的な接続"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7285,11 +7364,11 @@ msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin 環境保管領域用のテーブルが不明"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7301,11 +7380,11 @@ msgstr ""
"cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れると"
"このメッセージは表示されません。"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7318,29 +7397,29 @@ msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "メニュータブの表示方法"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB および BINARY カラムへの編集を禁止します。"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "バイナリカラムの保護"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7350,49 +7429,49 @@ msgstr ""
"環境保管領域の設定が必要です)。無効にした場合、クエリ履歴の表示に JavaScript "
"を利用します (ウィンドウを閉じると履歴は消えます)。"
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "永続的なクエリの履歴"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "履歴に残るクエリの件数"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "クエリ履歴の長さ"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
msgstr "文字セットの変換に使用される関数を選択します。"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "コード変換エンジン"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "表示している各テーブルのソートが記憶されます。"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "テーブルのソートを記憶する"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "プライマリキーのデフォルトの並び順"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7401,93 +7480,93 @@ msgid ""
msgstr ""
"カラム名を何行おきに挿入するか。[kbd]0[/kbd] でこの機能は無効になります。"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "カラム名の差し込み間隔"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "リレーション表示カラム"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "サーバの表示オプション"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "編集したセルを一度にすべて保存する"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "エクスポートをサーバ上に保存できるディレクトリ"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "保存ディレクトリ"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "使用しない場合は空欄にします。"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "ホストの認証順番"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "デフォルトにする場合は空欄にします。"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "ホスト認証のルール"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "パスワードなしログインの許可"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "root ログインの許可"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "セッション値"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
#, fuzzy
#| msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP 認証を行うときに表示される HTTP Basic 認証領域における名称"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP 領域"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7501,21 +7580,21 @@ msgstr ""
"[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス (ド"
"キュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)"
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey 設定ファイル"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "使用する認証方法"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "認証タイプ"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
@@ -7527,11 +7606,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合"
"は空欄にします。[kbd]pma_bookmark[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "ブックマークテーブル"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7543,36 +7622,36 @@ msgstr ""
"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。"
"[kbd]pma_column_info[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "カラム情報テーブル"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL サーバと圧縮プロトコルで接続します。"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "圧縮通信を行う"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
#, fuzzy
#| msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"サーバへの接続方法。確信がなければ [kbd]tcp[/kbd] のままにしてください。"
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "接続方法"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "phpMyAdmin ユーザのパスワード"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7585,11 +7664,11 @@ msgstr ""
"権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は [a@http://"
"wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "phpMyAdmin ユーザ"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7601,11 +7680,11 @@ msgstr ""
"環境保管領域に対しての代替ホスト。空欄で既に定義されているホストを使用しま"
"す。"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "環境保管領域ホスト"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7618,19 +7697,19 @@ msgstr ""
"環境保管領域に対しての代替ホスト。空欄で既に定義されているホストを使用しま"
"す。"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "環境保管領域ホスト"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "正規表現 (PCRE) で一致するデータベースを非表示にします。"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7638,15 +7717,15 @@ msgstr ""
"詳細は [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA bug tracker[/"
"a] と [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]を"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA の使用を無効にする"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "非表示にするデータベース"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7658,25 +7737,25 @@ msgstr ""
"SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL クエリ履歴テーブル"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "稼働している MySQL サーバのホスト名"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "サーバのホスト名"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "ログアウト URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7688,17 +7767,17 @@ msgstr ""
"データベースに保管されるテーブル環境設定の上限。古いものから自動的に削除され"
"ます。"
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "テーブル環境設定の最大保管数"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "スレーブのステータステーブルを閲覧する"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7709,13 +7788,13 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と"
"しておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "textarea の 1 行の文字数"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7727,17 +7806,17 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "パスワードなしでの接続を試みます。"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "パスワードなしで接続する"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
#, fuzzy
#| msgid ""
#| "You can use MySQL wildcard characters (% and _), escape them if you want "
@@ -7757,21 +7836,21 @@ msgstr ""
"力していき、最後に [kbd]'*'[/kbd] とだけ入力しておきます。[kbd]'*'[/kbd] は"
"残ったものをアルファベット順に並べて表示する働きをします。"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "リスト化したデータベースだけを表示する"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "config 認証を使用しない場合は空欄のままにします。"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "config 認証用のパスワード"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7781,11 +7860,11 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と"
"しておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF スキーマ:ページテーブル"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7801,23 +7880,23 @@ msgstr ""
"れらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのが"
"いいでしょう。"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "データベース名"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"MySQL サーバで開いているポート。デフォルトにしたい場合は空欄のままにします。"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "サーバのポート"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7829,11 +7908,11 @@ msgstr ""
"最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし"
"ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "最近使用したテーブル"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
@@ -7845,13 +7924,13 @@ msgstr ""
"最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし"
"ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "変数"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7863,11 +7942,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな"
"い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "リレーションテーブル"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7879,15 +7958,15 @@ msgstr ""
"設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を"
"参照してください。"
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "サインオンセッション名"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "サインオン URL"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
@@ -7895,21 +7974,21 @@ msgstr ""
"MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにしま"
"す。"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "サーバのソケット"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL サーバへの接続において SSL を有効にします。"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "SSL を使用する"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7921,13 +8000,13 @@ msgstr ""
"PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF スキーマ:テーブルの座標"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7939,11 +8018,11 @@ msgstr ""
"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。"
"[kbd]pma_table_info[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "表示するカラムためのテーブル"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, "
@@ -7955,11 +8034,11 @@ msgstr ""
"テーブルに対する環境設定をセッションを跨いで「永続的に」記憶しない場合は空欄"
"にします。[kbd]pma_table_uiprefs[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "テーブルに対する環境設定を保管するテーブル"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7967,11 +8046,11 @@ msgstr ""
"データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS 文を追加"
"するかどうか。"
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE を追加する"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7979,11 +8058,11 @@ msgstr ""
"テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS 文を追加するか"
"どうか。"
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "DROP TABLE を追加する"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7991,19 +8070,19 @@ msgstr ""
"ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS 文を追加するかどう"
"か。"
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "DROP VIEW を追加する"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "新しい世代に対して自動生成使用するコマンドのリストを定義します。"
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "追跡するコマンド"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -8015,11 +8094,11 @@ msgstr ""
"SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] "
"としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL コマンド追跡テーブル"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -8027,11 +8106,11 @@ msgstr ""
"SQL コマンドの追跡機能が、テーブルやビューに対して自動的に世代を作成するかど"
"うか。"
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "世代の自動作成"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8043,37 +8122,37 @@ msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "ユーザ環境保管テーブル"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "利用するテーブル"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "ホストテーブルを使う"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -8085,15 +8164,15 @@ msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "config 認証用のユーザ"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -8101,21 +8180,21 @@ msgstr ""
"このサーバのわかりやすい説明。ホスト名をそのまま表示させる場合には、空欄のま"
"まにします。"
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "このサーバの詳細な名前"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "「(行を) すべて表示」ボタンを表示するかどうか。"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "すべての行の表示を許可する"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -8132,39 +8211,39 @@ msgstr ""
"れはパスワード変更コマンドに対して直接実行する機能を制限するものではありませ"
"ん。"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "パスワード変更フォームを表示する"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "「データベースを作成する」の部分を表示する"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
msgid "Show or hide a column displaying the comments for all tables."
msgstr "テーブル一覧において作成日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "テーブルのコメント"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables"
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "テーブル一覧において作成日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "作成日時を表示する"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last update timestamp for all tables"
@@ -8172,11 +8251,11 @@ msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "テーブル一覧において最終更新日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "最終更新日時を表示する"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Last check timestamp for all tables"
@@ -8184,11 +8263,11 @@ msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "テーブル一覧において最終検査日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "最終検査日時を表示する"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
#, fuzzy
#| msgid ""
#| "Defines whether or not type fields should be initially displayed in edit/"
@@ -8198,31 +8277,31 @@ msgid ""
"insert mode."
msgstr "編集/挿入モードでデータ型項目を表示するかどうか定義します。"
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "データ型項目を表示する"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "編集/挿入モードで関数項目を表示します。"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "関数項目を表示する"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "操作ヒントを表示するかどうか。"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "操作ヒントを表示する"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8234,15 +8313,15 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] の結果へのリンク"
"を表示します。"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "phpinfo() リンクを表示する"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "詳細な MySQL サーバ情報を表示する"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8251,11 +8330,11 @@ msgid ""
msgstr ""
"phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "SQL クエリを表示する"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
#, fuzzy
#| msgid ""
#| "Defines whether the query box should stay on-screen after its submission"
@@ -8263,21 +8342,21 @@ msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "送信後もクエリボックスを画面上に残しておくかどうかを定義します。"
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "クエリボックスを保持する"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "データベースやテーブルの状態(領域の使用状況など)の表示を許可します。"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "統計を表示する"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8287,11 +8366,11 @@ msgstr ""
"使われているテーブルには印をして、テーブルがロックされていても可能であれば"
"データベースを閲覧します。"
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "ロックされているテーブルをスキップする"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8301,11 +8380,11 @@ msgstr ""
"Suhosin が検出された場合、警告をメインページに表示します。チェックを入れると"
"このメッセージは表示されません。"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin 警告"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8319,13 +8398,13 @@ msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "ログインクッキーの有効期間"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
#, fuzzy
#| msgid ""
#| "Textarea size (columns) in edit mode, this value will be emphasized for "
@@ -8337,11 +8416,11 @@ msgstr ""
"編集モードでの textarea の 1 行の文字数。SQL クエリ用のでは 2 倍、クエリウィ"
"ンドウに対しては 1.25 倍になります。"
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "textarea の 1 行の文字数"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
#, fuzzy
#| msgid ""
#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL "
@@ -8353,39 +8432,39 @@ msgstr ""
"編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対"
"しては 1.25 倍になります。"
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "textarea の行数"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "データベース選択時のブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "何も選択していないときのブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "デフォルトタイトル"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "サーバ選択時のブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "テーブル選択時のブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8403,31 +8482,31 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) ヘッダを信頼するように指定することにな"
"ります。[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "信頼されたプロキシのリスト(IP アドレスの許可/拒否)"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr "インポート用ファイルをアップロードできるサーバ上のディレクトリ"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "アップロードディレクトリ"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "全てのデータベース内を検索することを許可します。"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "データベース検索を使用する"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
#, fuzzy
#| msgid ""
#| "When disabled, users cannot set any of the options below, regardless of "
@@ -8439,28 +8518,28 @@ msgstr ""
"無効にすると、右端のチェックボックスに関係なく、ユーザが以下のオプションを設"
"定することはできません。"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "設定に開発者向けタブを追加する"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "バージョンアップの確認"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Enables check for latest version on main phpMyAdmin page"
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "phpMyAdmin のメインページ上で最終バージョンチェックを有効にします。"
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "バージョンの確認"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8468,34 +8547,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "ユーザ名"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "パスワード"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8508,55 +8587,55 @@ msgstr ""
"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC"
"%E3%83%9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "サーバのポート"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "実行されたクエリ"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8585,46 +8664,46 @@ msgstr "HTTP 認証"
msgid "Signon authentication"
msgstr "サインオン認証"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA 文を使用した CSV の読み込み"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document スプレッドシート"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "簡易"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "詳細"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "データベースエクスポートオプション"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "MS Excel 用の CSV"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8655,7 +8734,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8730,7 +8809,7 @@ msgstr "テーブルを作成"
msgid "Number of columns"
msgstr "カラム数"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"エクスポートプラグインをロードできません。正しくインストールされているか確認"
@@ -8775,11 +8854,11 @@ msgstr "テーブル:"
msgid "Format:"
msgstr "フォーマット:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "フォーマット特有のオプション:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8787,52 +8866,52 @@ msgstr ""
"下にスクロールして選択したフォーマットのオプションで必要事項を記入し、他の"
"フォーマットのオプションは無視してください。"
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "エンコーディングへの変換:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "行:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "ダンプする行"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "開始行:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "すべての行をダンプする"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "出力:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "サーバ上のディレクトリ %s に保存する"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "ファイル名のテンプレート:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ はサーバ名に"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr "、@DATABASE@ はデータベース名に"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr "、@TABLE@ はテーブル名に"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8844,74 +8923,86 @@ msgstr ""
"す。)。その他のテキストはそのまま使われます。詳細については、%4$sFAQ%5$s を"
"参照してください。"
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "今後のエクスポートでこれを使用する"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "ファイルの文字セット:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "圧縮:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zip 形式"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzip 形式"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "出力をテキストで表示する"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Exporting rows from \"%s\" table"
+msgid "Export databases as separate files"
+msgstr "テーブル \"%s\" から行単位でデータをエクスポート"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "カラム名をエクスポートする"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "出力をファイルに保存する"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "テーブルを選択してください"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "テーブルを選択してください"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "データベース名"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New page name: "
msgid "New table name"
msgstr "新しいページの名前: "
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "カラム名のコピー"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9545,7 +9636,7 @@ msgid "Create an index on %s columns"
msgstr "%s つのカラムにインデックスを作成する"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "隠す"
@@ -9687,11 +9778,6 @@ msgstr "付け替え元"
msgid "To"
msgstr "付け替え先"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "実行する"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add table prefix"
@@ -9909,29 +9995,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names: "
+msgid "Groups:"
+msgstr "カラム名: "
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "イベント"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "関数"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "プロシージャ"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "テーブル"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "Views"
msgid "Views:"
@@ -9961,38 +10053,38 @@ msgstr "ナビゲーションパネル"
msgid "Reload navigation panel"
msgstr "ナビゲーションフレームの再読み込み"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Filter databases by name"
msgid "Filter databases by name or regex"
msgstr "データベース名を絞る"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Clear series"
msgid "Clear fast filter"
msgstr "系列をクリアする"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Filter tables by name"
msgid "Filter by name or regex"
msgstr "テーブル名を絞る"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -10030,7 +10122,7 @@ msgstr "新規作成"
msgid "Database operations"
msgstr "データベースエクスポートオプション"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -11302,13 +11394,13 @@ msgstr "カラム名: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV インポートのパラメータが不正です: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -11317,13 +11409,13 @@ msgstr ""
"指定されたカラム (%s) は無効です。カラム名のスペルが正しいか、カンマで区切ら"
"れていないか、引用符で囲まれていないかを確認してください。"
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV 入力の書式が不正です (行: %d)。"
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "CSV 入力のカラム数が不正です (行: %d)。"
@@ -11740,61 +11832,61 @@ msgstr "テキストの内容を SQL クエリとみなし、構文ハイライ
msgid "Formats text as XML with syntax highlighting."
msgstr "テキストの内容を SQL クエリとみなし、構文ハイライト表示します。"
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "エラー: リレーションはすでに存在しています。"
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "外部キーを追加しました"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "エラー: リレーションを追加できませんでした。"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "エラー: リレーション機能は無効になっています!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "内部リレーションを追加しました"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "エラー: リレーションを追加できませんでした。"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "外部キーを追加しました"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "エラー: リレーションを追加できませんでした。"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "エラー: リレーションを追加できませんでした。"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11895,22 +11987,28 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "テーブルのソートを記憶する"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "高度な機能の設定する簡単な方法:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
#| msgid ""
#| "Create the needed tables with the examples/create_tables.sql."
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "examples/create_tables.sql で必要なテーブルを作成します。"
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "作ったテーブルにアクセスできる pma ユーザを作成します。"
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11918,22 +12016,22 @@ msgstr ""
"設定ファイル (config.inc.php) で高度な機能を有効にします。"
"config.sample.inc.php にある設定例をコピーするといいでしょう。"
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr "更新した設定ファイルを読み込むために phpMyAdmin にログインし直します。"
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "説明がありません"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11941,14 +12039,14 @@ msgid ""
"configuration storage there."
msgstr "phpMyAdmin 環境保管領域用のテーブルが不明"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin 環境保管領域用のテーブルが不明"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12746,7 +12844,7 @@ msgstr "表示できるイベントがありません。"
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current Server"
msgid "Current Server:"
@@ -17769,9 +17867,6 @@ msgstr "concurrent_insert は 0 に設定されています"
#~ msgid "Delete tracking data for this table"
#~ msgstr "このテーブルに対しての追跡データを削除する"
-#~ msgid "Show versions"
-#~ msgstr "世代を表示する"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -19099,9 +19194,6 @@ msgstr "concurrent_insert は 0 に設定されています"
#~ msgid "Reset"
#~ msgstr "リセット"
-#~ msgid "Show processes"
-#~ msgstr "MySQL プロセスの表示"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "リセット"
diff --git a/po/ka.po b/po/ka.po
index 7cff9fc06d..2aee7f782a 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-27 15:20+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "ყველაფრის ჩვენება"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "საწყისი მდებარეობა"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "გაუქმება"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "შეწყვეტილია"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import files"
msgid "Import status"
msgstr "ფაილების შემოტანა"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "ცხრილების არჩევა"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "მონაცემთა ბაზები არაა"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "სვეტების სახელები"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "პაროლის დაგენერირება"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "დაგენერირება"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "პაროლის შეცვლა"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "ორშ"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "ყველაფრის ჩვენება"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "ახალი ველის დამატება"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show hidden navigation tree items."
msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize export options"
msgid "Link with main panel"
msgstr "Customize export options"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize export options"
msgid "Unlink from main panel"
msgstr "Customize export options"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "ცხრილები"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "ხედო"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "პროცედურები"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "მოვლენა"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "ფუნქციები"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2702,139 +2745,139 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "მონაცემთა ბაზები არაა"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Create relation"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
#| msgid "Server port"
msgid "Send Error Report"
msgstr "სერვერის პორტი"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Other core settings"
msgid "Change Report Settings"
msgstr "Other core settings"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Report title"
msgid "Show Report Details"
msgstr "Report title"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "იგნორირება"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
msgid "Execute this query again?"
msgstr "SQL მოთხოვნები"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "ნამდვილად გსურთ "
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "ცხრილის კომენტარები"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide arguments"
msgstr "SQL Query box"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "წინა"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2842,96 +2885,96 @@ msgid "Next"
msgstr "შემდეგი"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "სულ"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ბინარული"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "მარ"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "აპრ"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "მაი"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ივნ"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ივლ"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "აგვ"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ოქტ"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2939,78 +2982,78 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "დეკ"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "კვი"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "ორშ"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "სამ"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "პარ"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -3018,86 +3061,86 @@ msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "შაბ"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "კვი"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "ორშ"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "სამ"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ოთხ"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "ხუთ"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "პარ"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "შაბ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
@@ -3106,137 +3149,137 @@ msgstr "ვიკი"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "არაა"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "წამში"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "გამოიყენე ტექსტური ველი"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "პორტის ნომერი არასწორია"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3308,16 +3351,16 @@ msgstr "საათში"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "შრიფტის ზომა"
@@ -3338,7 +3381,7 @@ msgid "Requery"
msgstr "მოთხოვნაში"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3554,7 +3597,7 @@ msgid "Count:"
msgstr "სვეტები"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3764,7 +3807,7 @@ msgstr "ძებნა"
msgid "Delete bookmark"
msgstr "ძებნა"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3772,21 +3815,21 @@ msgid ""
"configured)."
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "სერვერი არ პასუხობს"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "დეტალები…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3866,6 +3909,16 @@ msgstr ""
msgid "Inside tables:"
msgstr "ცხრილ(ებ)ში:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "ყველას მონიშნვა"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "მონიშნვის მოხსნა"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "სვეტში:"
@@ -3934,7 +3987,7 @@ msgid "All"
msgstr "ყველა"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
@@ -4256,7 +4309,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "სერვერი"
@@ -4267,34 +4320,13 @@ msgstr "სერვერი"
msgid "View"
msgstr "ხედო"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "სტრუქტურა"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4391,8 +4423,8 @@ msgstr "CHAR textarea columns"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "მონაცემთა ბაზები"
@@ -4516,7 +4548,7 @@ msgid "Recent"
msgstr "დაბრუნება"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4592,16 +4624,6 @@ msgstr "Joins"
msgid "Sorting"
msgstr "დალაგება"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "ცხრილები"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -5127,7 +5149,7 @@ msgstr "მაქს: %s%s"
msgid "MySQL said: "
msgstr "MySQL-მა თქვა: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL-ის ახსნა"
@@ -5144,7 +5166,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "PHP კოდის გარეშე"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP კოდის შექმნა"
@@ -5266,17 +5288,6 @@ msgstr "გამოიყენეთ ეს ველი"
msgid "Rows"
msgstr "სტრიქონები"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "მონაცემები"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5455,7 +5466,7 @@ msgstr "სერვერი"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5463,24 +5474,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5734,7 +5745,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6246,7 +6257,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6256,7 +6267,7 @@ msgstr "Statements"
msgid "Save as file"
msgstr "ფაილის სახის შენახვა"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "სომბოლოთა ნაკრები ფაილისათვის"
@@ -6285,17 +6296,17 @@ msgstr "შეკუმშვა"
msgid "Put columns names in the first row"
msgstr "Put fields names in the first row"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Fields enclosed by"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6315,16 +6326,16 @@ msgstr "Replace NULL by"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Lines terminated by"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6402,7 +6413,7 @@ msgid "Save on server"
msgstr "სერვერზე შენახვა"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -6421,8 +6432,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr "Enclose table and field names with backquotes"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6542,17 +6553,17 @@ msgid "Customize browse mode."
msgstr "დათვალიერების რეჟიმი"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default export options"
msgid "Customize default options."
msgstr "Customize default export options"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6584,7 +6595,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Customize default export options"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6638,104 +6649,115 @@ msgstr "ნავიგაციის ჩარჩო"
msgid "Customize appearance of the navigation panel."
msgstr "Customize navigation frame"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation frame"
+msgid "Navigation tree"
+msgstr "ნავიგაციის ჩარჩო"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+msgid "Customize the navigation tree."
+msgstr "Customize navigation frame"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "სერვერები"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "სერვერის ჩვენების პარამეტრები"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "ცხრილების ჩვენების პარამეტრები"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "მთავარი ჩარჩო"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
#, fuzzy
#| msgid "Microsoft Excel 2000"
msgid "Microsoft Office"
msgstr "Microsoft Excel 2000"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "გვერდის ნომერი:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "უსაფრთხოება"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "ძირითადი პარამეტრები"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Authentication type"
msgid "Authentication"
msgstr "ავთენტიფიკაციის ტიპი"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication type"
msgid "Authentication settings."
msgstr "ავთენტიფიკაციის ტიპი"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "სერვერის კონფიგურაცია"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "MySQL კავშირის კოლაცია"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
#, fuzzy
#| msgid "Configuration file"
msgid "Configuration storage"
msgstr "კონფიგურაციის ფაილი"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "figure phpMyAdmin database to gain access to additional features, see ../"
@@ -6750,76 +6772,76 @@ msgstr ""
"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in "
"documentation"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
msgid "Customize navigation panel"
msgstr "Customize navigation frame"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize export options"
msgid "Customize main panel"
msgstr "Customize export options"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL მოთხოვნები"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries"
msgid "SQL queries settings."
msgstr "SQL მოთხოვნები"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize export options"
msgid "Customize startup page."
msgstr "Customize export options"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database for user"
msgid "Database structure"
msgstr "მონაცემთა ბაზა მომხმარებლისთვის"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6827,63 +6849,63 @@ msgstr ""
msgid "Table structure"
msgstr "მონაცემთა ბაზა მომხმარებლისთვის"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "დაფები"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Relational schema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "გვერდის ზომა"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "გამოიყენე ტექსტური ველი"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize export options"
msgid "Customize text input fields."
msgstr "Customize export options"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! text"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
#| msgid "Customize default export options"
msgid "Customize default options"
msgstr "Customize default export options"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
#, fuzzy
#| msgid "Warning"
msgid "Warnings"
msgstr "Warning"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
@@ -6895,145 +6917,145 @@ msgstr ""
"[a@http://ka.wikipedia.org/wiki/Bzip2]bzip2[/a] შეკუმშვის ჩართვა "
"იმპორტირების და ექსპორტირების ოპერაციებისთვის"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "შემოტანილი ფაილების ფორმატი"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Put fields names in the first row"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start."
msgstr "Number of records (queries) to skip from start"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Add AUTO_INCREMENT value"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "ჩასმული სტრიქონების რაოდენობა"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
#, 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 "Maximum number of characters used when a SQL query is displayed"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -7041,164 +7063,164 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Maximum number of characters used when a SQL query is displayed"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of databases displayed in database list."
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum items on first level"
msgstr "Maximum size for temporary sort files"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table list."
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "მეხსიერების შეზღუდვა"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show databases navigation as tree"
msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "ლოგოს ჩვენება"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "Show logo in left frame"
msgid "URL where logo in the navigation panel will point to."
msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Logo link URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid ""
@@ -7206,128 +7228,184 @@ msgid ""
"display a filter box."
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of items to display the filter box"
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of databases to display the database filter box"
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
msgid "Enable navigation tree expansion"
msgstr "Customize navigation frame"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "ცხრილების ჩვენება"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Show grid"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "ფუნქციების ველების ჩვენება"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "პროცესების ჩვენება"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Show grid"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
msgid "Recently used tables"
msgstr "დაბლოკილი ცხრილების გამოტოვება"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Alter table order by"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
msgid "Table navigation bar"
msgstr "Customize navigation frame"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
#, fuzzy
#| msgid ""
#| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
@@ -7339,72 +7417,72 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL სერვერთან კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
#, fuzzy
#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Disallow BLOB and BINARY fields from editing"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Protect binary fields"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
#, fuzzy
#| msgid ""
#| "ble if you want DB-based query history (requires phpMyAdmin configuration "
@@ -7419,153 +7497,153 @@ msgstr ""
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Rename table to"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Repair threads"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display"
msgstr "Relational display field"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "სერვერის ჩვენების პარამეტრები"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "დირექტორიის შენახვა"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Host authentication order"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Host authentication rules"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "root-ით შესვლის ნებართვა"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "სესიის მნიშვნელობა"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication type"
msgid "Authentication method to use."
msgstr "ავთენტიფიკაციის ტიპი"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "ავთენტიფიკაციის ტიპი"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7576,11 +7654,11 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "ცხრილის ჩანიშვნა"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7591,86 +7669,86 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL სერვერთან კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "კავშირის ტიპი"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Control user"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "Control user"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA-ის გამოყენების აკრძალვა"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "მონაცემთა ბაზების დამალვა"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7681,39 +7759,39 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "სერვერის ჰოსტის სახელი"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7724,13 +7802,13 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "CHAR textarea columns"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7741,17 +7819,17 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Connect without password"
msgid "Try to connect without password."
msgstr "პაროლის გარეშე დაკავშირება"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "პაროლის გარეშე დაკავშირება"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
#, fuzzy
#| msgid ""
#| " can use MySQL wildcard characters (% and _), escape them if you want use "
@@ -7764,19 +7842,19 @@ msgstr ""
"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'"
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7786,33 +7864,33 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "მონაცემთა ბაზა"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "სერვერის პორტი"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7823,13 +7901,13 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Recall user name"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7840,13 +7918,13 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "ცვლადები"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7857,43 +7935,43 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "SSL კავშირის ჩართვა MySQL სერვერზე"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "SSL-ის გამოყენება"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7904,11 +7982,11 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "le to describe the display fields, leave blank for no support; gested: "
@@ -7920,13 +7998,13 @@ msgstr ""
"Table to describe the display fields, leave blank for no support; suggested: "
"[kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Display fields table"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7937,51 +8015,51 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "UI პარამეტრების მაგიდა"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Statements"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -7992,25 +8070,25 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL query history table"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Automatic recovery mode"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8021,35 +8099,35 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "გამოიყენე ცხრილები"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -8060,237 +8138,237 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "ther a user should be displayed a \"show all (records)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Whether a user should be displayed a \"show all (records)\" button"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "პაროლის შეცვლის ფორმის ჩვენება"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "მონაცემთა ბაზის შექმნის ფორმის ჩვენება"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "ცხრილის კომენტარები"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP-ის ინფორმაციის ჩვენება"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Show slave status"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Show open tables"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "ფუნქციების ველების ჩვენება"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "phpinfo() ბმულის ჩვენება"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "MySQL სერვერის შესახებ დეტალური ინფორმაციის ჩვენება"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "SQL მოთხოვნების ჩვენება"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "SQL Query box"
msgid "Retain query box"
msgstr "SQL Query box"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "სტატისტიკის ჩევნება"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "დაბლოკილი ცხრილების გამოტოვება"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR textarea columns"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR textarea rows"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Default table tab"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8298,52 +8376,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "ატვირთვის დირექტორია"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "ვერსიის შემოწმება"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8351,33 +8429,33 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "მომხმარებელი:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "პაროლი"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
@@ -8389,53 +8467,53 @@ msgstr ""
"[a@http://ka.wikipedia.org/wiki/Bzip2]bzip2[/a] შეკუმშვის ჩართვა "
"იმპორტირების და ექსპორტირების ოპერაციებისთვის"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "სერვერის პორტი"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8469,48 +8547,48 @@ msgstr "HTTP ავტორიზაცია"
msgid "Signon authentication"
msgstr "Host authentication order"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document Spreadsheet"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Custom color"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV MS Excel-თვის"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8541,7 +8619,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -8618,7 +8696,7 @@ msgstr "ცხრილის შექმნა"
msgid "Number of columns"
msgstr "ველების რაოდენობა"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8675,71 +8753,71 @@ msgstr "ცხრილები"
msgid "Format:"
msgstr "ფორმატი"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "გარდაქმნის პარამეტრები"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
#, fuzzy
#| msgid "Recoding engine"
msgid "Encoding Conversion:"
msgstr "Recoding engine"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "სტრიქონები"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "სერვერის %s დირექტორიაში შენახვა"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "File name template"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8754,84 +8832,95 @@ msgstr ""
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "სიმბოლოთა ნაკრები ფაილისთვის:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "შეკუმშვა"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zip-ით შეკუმშული\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzip-ით დაარქივებული\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "ფაილის სახის შენახვა"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Create new table on database %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+msgid "Export tables as separate files"
+msgstr "Export defaults"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "ფაილის სახის შენახვა"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "ცხრილების არჩევა"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "ცხრილების არჩევა"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "მონაცემთა ბაზა"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "ცხრილები არაა"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "სვეტების სახელები"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9411,7 +9500,7 @@ msgid "Create an index on %s columns"
msgstr "Create an index on %s columns"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "დამალვა"
@@ -9559,11 +9648,6 @@ msgstr "პარ"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Submit"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9785,29 +9869,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "სვეტების სახელები"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "მოვლენები"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "ფუნქციები"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "პროცედურები"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "ცხრილები"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9836,38 +9926,38 @@ msgstr "ნავიგაციის ჩარჩო"
msgid "Reload navigation panel"
msgstr "Customize navigation frame"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "table name"
msgid "Filter databases by name or regex"
msgstr "ცხრილის სახელი"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "ფაილის სახის შენახვა"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "table name"
msgid "Filter by name or regex"
msgstr "ცხრილის სახელი"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9905,7 +9995,7 @@ msgstr ""
msgid "Database operations"
msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -11181,26 +11271,26 @@ msgstr "სვეტების სახელები"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@@ -11621,61 +11711,61 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "ცვლილებები შენახულია"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "ფაილის წაკითხვა ვერ მოხერხდა"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relations"
msgid "Internal relation has been added."
msgstr "Internal relations"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "ფაილის წაკითხვა ვერ მოხერხდა"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "ცვლილებები შენახულია"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "ფაილის წაკითხვა ვერ მოხერხდა"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "ფაილის წაკითხვა ვერ მოხერხდა"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relations"
msgid "Internal relation has been removed."
@@ -11775,54 +11865,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Rename table to"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12660,7 +12756,7 @@ msgstr "There are no configured servers"
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -18159,9 +18255,6 @@ msgstr "max. concurrent connections"
#~ msgid "Reset"
#~ msgstr "Reset"
-#~ msgid "Show processes"
-#~ msgstr "პროცესების ჩვენება"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "დაბრუნება"
diff --git a/po/kk.po b/po/kk.po
index d952aee7d6..32fdafa238 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-03-31 14:26+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Бәрін көрсету"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Linestring"
msgid "Original length"
msgstr "Сызық"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import"
msgid "Import status"
msgstr "Импорт"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select All"
msgid "Select database first"
msgstr "Барлығын ерекшелеу"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
msgstr "Сілтемеге өту"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Copy column name"
msgid "Copy column name."
msgstr "Баған атын көшіру"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Шығару"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Тағы"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Бәрін көрсету"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Hide indexes"
msgid "Hide Panel"
msgstr "Индекстерді жасыру"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show indexes"
msgid "Show hidden navigation tree items."
msgstr "Индекстерді көрсету"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Hide indexes"
msgid "Link with main panel"
msgstr "Индекстерді жасыру"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Hide indexes"
msgid "Unlink from main panel"
msgstr "Индекстерді жасыру"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Table"
msgid "tables"
msgstr "Кесте"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Түр"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Processes"
msgid "procedures"
msgstr "Процесстер"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Recommendation"
msgid "events"
msgstr "Ұсыныс"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Questions"
msgid "functions"
msgstr "Сұрақтар"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2530,451 +2573,451 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr "Соңғы тұрақты болжам:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "Баптауын өзгерту"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Елемеу"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?"
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Кестеге түсініктеме"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Іздеу нәтижелерін жасыру"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Алдыңғы"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Келесі"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Бүгін"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Қаңтар"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Ақпан"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Наурыз"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "Сәуір"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Мамыр"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Маусым"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Шілде"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "Тамыз"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "Қыркүйек"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Қазан"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "Қараша"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Желтоқсан"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Қаң"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Ақп"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Нау"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Сәу"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Мам"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Мау"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Шіл"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Там"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Қыр"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Қаз"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Қар"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Жел"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Жексенбі"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Дүйсенбі"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Сейсенбі"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Сәрсенбі"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Бейсенбі"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Жұма"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Сенбі"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Жек"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Дүй"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Сей"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Сәр"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Бей"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Жұм"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Сен"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Жк"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Дс"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Сс"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Бс"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Жм"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Сн"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Апт"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Сағат"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Минут"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Секунд"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Select All"
msgid "Please enter a valid date"
msgstr "Барлығын ерекшелеу"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please add at least one variable to the series"
msgid "Please enter at least {0} characters"
msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3045,16 +3088,16 @@ msgstr "сағатқа"
msgid "per day"
msgstr "күнге"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
#, fuzzy
msgid "Font size"
msgstr "Қарiп өлшемi"
@@ -3074,7 +3117,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3285,7 +3328,7 @@ msgid "Count:"
msgstr "Бағана"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3494,25 +3537,25 @@ msgstr "Жою"
msgid "Delete bookmark"
msgstr "Жою"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3588,6 +3631,16 @@ msgstr "Сөз, бос орынмен бөлінеді (\" \")."
msgid "Inside tables:"
msgstr "Кесте бойынша:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Барлығын ерекшелеу"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Eрекшеленгендерді алып тастау"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Бағана бойынша:"
@@ -3645,7 +3698,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3946,7 +3999,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3957,34 +4010,13 @@ msgstr ""
msgid "View"
msgstr "Түр"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -4081,8 +4113,8 @@ msgstr "Бағаналар қосу"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Дерекқоры"
@@ -4193,7 +4225,7 @@ msgid "Recent"
msgstr "Ұсыныс"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Tracked tables"
msgid "Favorite tables"
@@ -4268,16 +4300,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4790,7 +4812,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4807,7 +4829,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4924,17 +4946,6 @@ msgstr "Осы мәнді қолданыңыз"
msgid "Rows"
msgstr "Қатарлар"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5101,7 +5112,7 @@ msgstr "Сервер:"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5109,24 +5120,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5360,7 +5371,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5759,7 +5770,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5768,7 +5779,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5795,15 +5806,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5819,14 +5830,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5896,7 +5907,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5913,8 +5924,8 @@ msgstr "AUTO_INCREMENT қосу"
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6029,15 +6040,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -6065,7 +6076,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6112,163 +6123,175 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Table comments"
+msgid "Navigation tree"
+msgstr "Кестеге түсініктеме:"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Customize the navigation tree."
+msgstr "Индекстерді көрсету"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Table comments"
msgid "Tables display options."
msgstr "Кестеге түсініктеме:"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Hide indexes"
msgid "Main panel"
msgstr "Индекстерді жасыру"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Current settings"
msgid "Authentication settings."
msgstr "Ағымдағы баптау"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "Current settings"
msgid "SQL queries settings."
msgstr "Ағымдағы баптау"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "Мәлімет қорлары"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6276,189 +6299,189 @@ msgstr ""
msgid "Table structure"
msgstr "Мәлімет қорлары"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6466,1080 +6489,1135 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show indexes"
msgid "Show databases navigation as tree"
msgstr "Индекстерді көрсету"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Table comments"
msgid "Show logo in navigation panel."
msgstr "Кестеге түсініктеме:"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table comments"
msgid "Enable navigation tree expansion"
msgstr "Кестеге түсініктеме:"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Inside tables:"
+msgid "Show tables in tree"
+msgstr "Кесте бойынша:"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr ""
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Индекстерді көрсету"
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr ""
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Show views in tree"
+msgstr "Индекстерді көрсету"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr ""
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Индекстерді көрсету"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+msgid "Show functions in tree"
+msgstr "Соңғы жаңартылған сәттен бастап қосылыстар."
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
-msgstr ""
+#, fuzzy
+#| msgid "Processes"
+msgid "Show procedures in tree"
+msgstr "Процесстер"
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
#, fuzzy
+#| msgid "Show indexes"
+msgid "Show events in tree"
+msgstr "Индекстерді көрсету"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show indexes"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Индекстерді көрсету"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "Кестеге түсініктеме:"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "No data found"
msgid "Relational display"
msgstr "Мәліметтер жоқ"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "Кестеге түсініктеме:"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add columns"
msgid "Central columns table"
msgstr "Бағаналар қосу"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Tracked tables"
msgid "Favorites table"
msgstr "Қадағаланатын кестелер"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Кестелерді қолдану"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Кестеге түсініктеме"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7547,52 +7625,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7600,84 +7678,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Қолданушы:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password:"
msgid "Proxy password"
msgstr "Құпия сөз:"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Enable Zero Configuration mode"
@@ -7703,44 +7781,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7769,7 +7847,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7838,7 +7916,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7881,62 +7959,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7944,74 +8022,84 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Enter each value in a separate field"
+msgid "Export tables as separate files"
+msgstr "Әрбір мәнді жеке өріске енгізіңіз"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "Барлығын ерекшелеу"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "Барлығын ерекшелеу"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "The database name is empty!"
msgid "New database name"
msgstr "Дерекқорының аты көрсетілмеген!"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "Inside tables:"
msgid "New table name"
msgstr "Кесте бойынша:"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "Баған атын көшіру"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -8571,7 +8659,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8707,11 +8795,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Replace table prefix"
@@ -8926,28 +9009,34 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Username:"
+msgid "Groups:"
+msgstr "Қолданушы:"
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr ""
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Questions"
msgid "Functions:"
msgstr "Сұрақтар"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Processes"
msgid "Procedures:"
msgstr "Процесстер"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Table"
msgid "Tables:"
msgstr "Кесте"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -8977,37 +9066,37 @@ msgstr "Кестеге түсініктеме:"
msgid "Reload navigation panel"
msgstr "Кестеге түсініктеме:"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "The database name is empty!"
msgid "Filter databases by name or regex"
msgstr "Дерекқорының аты көрсетілмеген!"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "The database name is empty!"
msgid "Filter by name or regex"
msgstr "Дерекқорының аты көрсетілмеген!"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9043,7 +9132,7 @@ msgstr ""
msgid "Database operations"
msgstr "Дерекқорына түсініктеме: "
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show indexes"
msgid "Show hidden items"
@@ -10238,26 +10327,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10597,59 +10686,59 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Файлды оқу мүмкін емес"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "Internal relation has been added."
msgstr "%s кестесі аластанды"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Файлды оқу мүмкін емес"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "FOREIGN KEY relation has been removed."
msgstr "%s кестесі аластанды"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Файлды оқу мүмкін емес"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Файлды оқу мүмкін емес"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Table %s has been emptied."
msgid "Internal relation has been removed."
@@ -10738,54 +10827,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11510,7 +11603,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current settings"
msgid "Current Server:"
@@ -16103,10 +16196,6 @@ msgstr "Паралельді_кірістірмелерді анықтау"
#~ msgid "Server traffic (in KiB)"
#~ msgstr "Сервер трафигі (KiB)"
-#, fuzzy
-#~ msgid "Connections since last refresh"
-#~ msgstr "Соңғы жаңартылған сәттен бастап қосылыстар."
-
#~ msgid "Questions since last refresh"
#~ msgstr "Соңғы жаңартылған сәттен басталған сұрақтар."
diff --git a/po/km.po b/po/km.po
index 64de43d643..b544411825 100644
--- a/po/km.po
+++ b/po/km.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-04-19 18:59+0200\n"
"Last-Translator: Sovichet Tep
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "បោះបង់"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import"
msgid "Import status"
msgstr "នាំចូល"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select All"
msgid "Select database first"
msgstr "ជ្រើសទាំងអស់"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Table"
msgid "tables"
msgstr "តារាង"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Processes"
msgid "procedures"
msgstr "ដំណើរការ"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Recent"
msgid "events"
msgstr "ថ្មីៗ"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Action"
msgid "functions"
msgstr "សកម្មភាព"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2433,469 +2476,469 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to delete the search \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "តើអ្នកពិតជាលុបការស្វែងរក \"%s\" មែនទេ?"
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments:"
msgid "Show arguments"
msgstr "មតិយោបល់តារាង៖"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr ""
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr ""
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr ""
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr ""
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr ""
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr ""
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr ""
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr ""
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr ""
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr ""
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr ""
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr ""
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr ""
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid email address"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date ( ISO )"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "សូមបញ្ចូលប្រវែងត្រឹមត្រូវ!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter the same value again"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter at least {0} characters"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a value between {0} and {1}"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "សូមបញ្ចូលប្រវែងត្រឹមត្រូវ!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a value greater than or equal to {0}"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date or time"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "សូមបញ្ចូលតម្លៃលេខត្រឹមត្រូវ!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2966,16 +3009,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2994,7 +3037,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3183,7 +3226,7 @@ msgid "Count:"
msgstr ""
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3362,25 +3405,25 @@ msgstr "ធ្វើបច្ចុប្បន្នភាពចំណា
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3454,6 +3497,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "ជ្រើសទាំងអស់"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "មិនរើសទាំងអស់"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3507,7 +3560,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3801,7 +3854,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3812,34 +3865,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -3934,8 +3966,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -4038,7 +4070,7 @@ msgid "Recent"
msgstr "ថ្មីៗ"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "តារាងដែលពេញចិត្ត"
@@ -4107,16 +4139,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4615,7 +4637,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4632,7 +4654,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4747,17 +4769,6 @@ msgstr ""
msgid "Rows"
msgstr "ជួរដេក"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4919,7 +4930,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4927,24 +4938,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5172,7 +5183,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5567,7 +5578,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5576,7 +5587,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5603,15 +5614,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5627,14 +5638,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5704,7 +5715,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5721,8 +5732,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5835,15 +5846,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5871,7 +5882,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5916,341 +5927,351 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Change settings"
+msgid "Navigation tree"
+msgstr "ប្ដូរការកំណត់"
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6258,1064 +6279,1108 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Table comments:"
+msgid "Show tables in tree"
+msgstr "មតិយោបល់តារាង៖"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
-msgstr ""
+#, fuzzy
+#| msgid "Processes"
+msgid "Show procedures in tree"
+msgstr "ដំណើរការ"
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "តារាងដែលពេញចិត្ត"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments:"
msgid "Show table comments"
msgstr "មតិយោបល់តារាង៖"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7323,52 +7388,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7376,80 +7441,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7473,44 +7538,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7539,7 +7604,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7604,7 +7669,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7647,62 +7712,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7710,70 +7775,78 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "ជ្រើសទាំងអស់"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "ជ្រើសទាំងអស់"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "The database name is empty!"
msgid "New database name"
msgstr "ឈ្មោះមូលដ្ឋានទិន្នន័យនៅទទេ!"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8327,7 +8400,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8459,11 +8532,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8676,22 +8744,26 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
-msgid "Tables:"
+msgid "Procedures:"
msgstr ""
#: libraries/navigation/Navigation.class.php:196
+msgid "Tables:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8717,32 +8789,32 @@ msgstr "ប្ដូរការកំណត់"
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8776,7 +8848,7 @@ msgstr ""
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9921,26 +9993,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10272,55 +10344,55 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "កំហុស៖ មិនអាចបន្ថែមចំណងសម្ព័ន្ធបាន!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr ""
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: Internal relation could not be added!"
msgstr "កំហុស៖ មិនអាចបន្ថែមចំណងសម្ព័ន្ធបាន!"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr ""
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "កំហុស៖ មិនអាចបន្ថែមចំណងសម្ព័ន្ធបាន!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation could not be added!"
msgid "Error: Internal relation could not be removed!"
msgstr "កំហុស៖ មិនអាចបន្ថែមចំណងសម្ព័ន្ធបាន!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr ""
@@ -10407,54 +10479,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11172,7 +11248,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/kn.po b/po/kn.po
index 0f5821fb8a..86462825ff 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-12-24 02:27+0200\n"
"Last-Translator: Robin van der Vliet
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr ""
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr ""
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr ""
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2350,437 +2391,437 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
-msgid "Show arguments"
+#, php-format
+msgid "%s argument(s) passed"
msgstr ""
#: js/messages.php:595
+msgid "Show arguments"
+msgstr ""
+
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "ಜನವರಿ"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "ಫೆಬ್ರವರಿ"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "ಮಾರ್ಚ್"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "ಏಪ್ರಿಲ್"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "ಮೇ"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "ಜೂನ್"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "ಜುಲೈ"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "ಆಗಸ್ಟ್"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "ಸಪ್ಟೆಂಬರ್"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "ಅಕ್ಟೋಬರ್"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "ನವೆಂಬರ್"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "ಡಿಸೆಂಬರ್"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "ಜನ"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "ಫೆಬ್ರು"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "ಮಾ"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "ಏಪ್ರಿ"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "ಮೇ"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "ಜೂ"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "ಜು"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "ಆಗ"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "ಸೆಪ್ಟೆಂ"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "ಅಕ್ಟೋ"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "ನವೆಂ"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "ಡಿಸೆಂ"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "ರವಿವಾರ"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "ಸೋಮವಾರ"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "ಮಂಗಳವಾರ"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "ಬುಧವಾರ"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "ಗುರುವಾರ"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "ಶುಕ್ರವಾರ"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "ಶನಿವಾರ"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "ರ"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "ಸೋ"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "ಮಂ"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "ಬು"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "ಗು"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "ಶು"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "ಶನಿ"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "ರ"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "ಸೋ"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "ಮಂ"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "ಬು"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "ಗು"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "ಶು"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "ಶನಿ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr ""
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2851,16 +2892,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2879,7 +2920,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3057,7 +3098,7 @@ msgid "Count:"
msgstr ""
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3228,25 +3269,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3320,6 +3361,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr ""
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr ""
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3373,7 +3424,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3665,7 +3716,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3676,34 +3727,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -3798,8 +3828,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -3902,7 +3932,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr ""
@@ -3971,16 +4001,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4479,7 +4499,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4496,7 +4516,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4609,17 +4629,6 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4775,7 +4784,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4783,24 +4792,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5020,7 +5029,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5415,7 +5424,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5424,7 +5433,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5451,15 +5460,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5475,14 +5484,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5552,7 +5561,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5569,8 +5578,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5683,15 +5692,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5719,7 +5728,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5764,341 +5773,349 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+msgid "Navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6106,1060 +6123,1100 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
+#: libraries/config/messages.inc.php:487
+msgid "Show tables in tree"
msgstr ""
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7167,52 +7224,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7220,80 +7277,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7317,44 +7374,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7383,7 +7440,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7448,7 +7505,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7491,62 +7548,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7554,64 +7611,72 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr ""
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr ""
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr ""
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8165,7 +8230,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8297,11 +8362,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8514,22 +8574,26 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
-msgid "Tables:"
+msgid "Procedures:"
msgstr ""
#: libraries/navigation/Navigation.class.php:196
+msgid "Tables:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8553,33 +8617,33 @@ msgstr ""
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8613,7 +8677,7 @@ msgstr ""
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9748,26 +9812,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10096,47 +10160,47 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr ""
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr ""
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr ""
@@ -10221,54 +10285,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -10985,7 +11053,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index ef8cf5f565..29e0460a04 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-03-30 03:03+0200\n"
"Last-Translator: Kyeong Su Shin
to toggle column's visibility."
msgstr "칼럼보이기 여부를 바꾸려면
드롭다운 화살표를 클릭하세요."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "모두 보기"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2317,11 +2360,11 @@ msgstr ""
"이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 저장 시에 격자창 편집, 체크박"
"스, 편집, 복사, 삭제 등의 기능이 정상적으로 동작하지 않을 수 있습니다."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr "올바른 16진수 문자열을 입력하세요. 사용가능한 문자는 0-9, A-F 입니다."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2329,135 +2372,135 @@ msgstr ""
"정말 모든 열을 보시겠습니까? 테이블 크기가 큰 경우 브라우저가 정지할 수 있습"
"니다."
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original string"
msgid "Original length"
msgstr "원본 문자열"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "취소"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "중지됨"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "성공"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "상태 가져오기"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "파일을 여기로 끌어오세요"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "데이터베이스를 먼저 선택하세요"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "값을 더블클릭 하여 바로 수정할 수 있습니다.
(일부 제외)."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "값을 클릭하여 바로 수정할 수 있습니다.
(일부 제외)."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "링크로 이동합니다:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "컬럼 이름 복사."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"마우스 오른쪽버튼을 클릭하여 클립보드에 컬럼 이름을 복사할 수 있습니다."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "암호 생성"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "생성"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "암호 변경"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "더보기"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "패널 표시"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "패널 숨기기"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "숨겨진 탐색 트리의 항목보기."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main panel"
msgid "Link with main panel"
msgstr "매인 패널 사용자화"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main panel"
msgid "Unlink from main panel"
msgstr "매인 패널 사용자화"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "테이블"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "뷰"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "프로시저"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "이벤트"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "함수"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
"요청하신 페이지를 기록에서 찾을 수 없습니다. 만기 되었을 수도 있습니다."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2466,48 +2509,48 @@ msgstr ""
"phpMyAdmin 업그레이드가 필요합니다. 최신버전은 %s이며 %s에 릴리즈 되었습니다."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", 최신 안정 버전:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "최신버전"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "뷰 생성"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "오류 보고서 전송"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "제출오류 보고서"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr "치명적인 자바스크립트 오류 발생. 오류를 전송할까요?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "보고서 설정 변경"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "보고서 상세 보기"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr "PHP의 실행시간 제한에 걸려 내보내기가 완료되지 않았습니다!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2516,423 +2559,423 @@ msgstr ""
"경고: 현재 페이지의 폼 필드는 %d개가 넘습니다. 폼이 전송될 때 PHP의 "
"max_input_vars 설정에 의해 일부 필드가 손실될 수 있습니다."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "서버 에러가 감지되었습니다!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "이 창의 아래쪽을 보세요."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "모두 무시"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr "각 설정은 현재 전송중입니다. 기다려주세요."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "이 질의를 다시 실행합니까?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "정말 이 북마크를 삭제하겠습니까?"
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "테이블 설명"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "검색 결과 숨기기"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "이전"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "다음"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "오늘"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "1월"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "2월"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "3월"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "4월"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "5월"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "6월"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "7월"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "8월"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "9월"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "10월"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "11월"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "12월"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "1월"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "2월"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "3월"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "4월"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "5월"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "6월"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "7월"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "8월"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "9월"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "10월"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "11월"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "12월"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "일요일"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "월요일"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "화요일"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "수요일"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "목요일"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "금요일"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "토요일"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "토"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "일"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "월"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "화"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "수"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "목"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "금"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "토"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "주"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-year-month"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "없음"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "시"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "분"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "초"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "텍스트 입력 필드를 사용"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid email address"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid URL"
msgstr "올바른 숫자를 입력하세요!"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date ( ISO )"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid number"
msgstr "올바른 숫자를 입력하세요!"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid credit card number"
msgstr "올바른 숫자를 입력하세요!"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter only digits"
msgstr "올바른 길이를 입력하세요!"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter the same value again"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter at least {0} characters"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value between {0} and {1}"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "올바른 길이를 입력하세요!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a value greater than or equal to {0}"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid page name"
msgid "Please enter a valid date or time"
msgstr "올바른 페이지 이름을 입력하세요"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "올바른 숫자를 입력하세요!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3005,17 +3048,17 @@ msgstr "시간당"
msgid "per day"
msgstr "하루당"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "이미 존재하고 있는 환경설정 파일 (%s) 을 읽을 수 없습니다."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"설정 파일에 잘못된 권한이 지정되어있습니다. 익명 쓰기 권한이면 안됩니다!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "글꼴 크기"
@@ -3034,7 +3077,7 @@ msgid "Requery"
msgstr "다시 쿼리하기"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3231,7 +3274,7 @@ msgid "Count:"
msgstr "개수"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3406,7 +3449,7 @@ msgstr "북마크 업데이트"
msgid "Delete bookmark"
msgstr "북마크 삭제"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3414,19 +3457,19 @@ msgstr ""
"서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 "
"않습니다)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "서버가 응답하지 않습니다."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "디렉토리를 포함하는 데이터베이스의 권한을 확인하십시오."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "자세히…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr "관리사용자(controluser, 설정에 정의됨)로서의 접속에 실패."
@@ -3498,6 +3541,16 @@ msgstr "단어는 스페이스(\" \")로 구분됩니다."
msgid "Inside tables:"
msgstr "검색할 테이블:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "모두 선택"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "모두 선택안함"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "검색할 컬럼:"
@@ -3551,7 +3604,7 @@ msgid "All"
msgstr "모두"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "행 갯수:"
@@ -3848,7 +3901,7 @@ msgstr ""
"인덱스 %1$s와 %2$s는 동일한 것으로, 두 가지 중 하나는 제거해도 상관없습니다."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "서버"
@@ -3859,34 +3912,13 @@ msgstr "서버"
msgid "View"
msgstr "뷰"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "구조"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3981,8 +4013,8 @@ msgstr "중심 열"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "데이터베이스"
@@ -4082,7 +4114,7 @@ msgid "Recent"
msgstr "최근"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "즐겨찾기 테이블"
@@ -4151,16 +4183,6 @@ msgstr "조인 수"
msgid "Sorting"
msgstr "정렬"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "테이블"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "트랜잭션 코디네이터"
@@ -4714,7 +4736,7 @@ msgstr "최대: %s%s"
msgid "MySQL said: "
msgstr "MySQL 메시지: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL 해석"
@@ -4731,7 +4753,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "PHP 코드 없이 보기"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP 코드 보기"
@@ -4846,17 +4868,6 @@ msgstr "이 값을 사용합니다"
msgid "Rows"
msgstr "행"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "데이터"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5017,7 +5028,7 @@ msgstr "서버 %d"
msgid "Invalid authentication method set in configuration:"
msgstr "설정 파일에 잘못된 인증 방식 설정되어 있습니다.:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5025,24 +5036,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s를 %s 이상으로 업그레이드 하십시오."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr "오류: 토큰 불일치"
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS 덮어쓰기 시도"
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "어떤 공격을 받고있을 가능성이 있습니다"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다"
@@ -5272,7 +5283,7 @@ msgid "Set value: %s"
msgstr "설정된 값: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "기본값으로 복원"
@@ -5729,7 +5740,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "최대 실행 시간"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -5739,7 +5750,7 @@ msgstr "%s 구문 추가"
msgid "Save as file"
msgstr "파일로 저장"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "파일 문자셋"
@@ -5766,15 +5777,15 @@ msgstr "압축"
msgid "Put columns names in the first row"
msgstr "첫 줄에 열 이름을 넣기"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "열을 시작하는 문자"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr "특수 문자 구분에 사용된 문자"
@@ -5790,14 +5801,14 @@ msgstr "NULL을 변경"
msgid "Remove CRLF characters within columns"
msgstr "열 내의 CRLF 문자를 제거하기"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr "열을 종료하는 문자"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr "행을 종료하는 문자"
@@ -5867,7 +5878,7 @@ msgid "Save on server"
msgstr "서버에 저장"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "기존 파일 덮어쓰기"
@@ -5884,8 +5895,8 @@ msgstr "AUTO_INCREMENT 값 추가"
msgid "Enclose table and column names with backquotes"
msgstr "테이블과 열 이름을 백쿼트(`)로 감싸기"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL 호환 모드"
@@ -6004,15 +6015,15 @@ msgid "Customize browse mode."
msgstr "탐색 모드 사용자화."
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr "기본옵션 사용자화."
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV 데이터"
@@ -6040,7 +6051,7 @@ msgstr "기본설정 내보내기"
msgid "Customize default export options."
msgstr "기본 내보내기 옵션 사용자화."
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "특징"
@@ -6085,40 +6096,52 @@ msgstr "내비게이션 패널"
msgid "Customize appearance of the navigation panel."
msgstr "내비게이션 패널 모양 설정."
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "내비게이션 패널"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "네비게이션 패널 사용자화"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "서버"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr "서버보기 옵션."
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr "테이블보기 옵션."
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "메인 패널"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "마이크로소프트 오피스"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "기타 핵심기능 설정"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr "어디에도 해당되지 않는 설정."
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "페이지 제목"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6131,11 +6154,11 @@ msgstr ""
"브라우저의 타이틀바 텍스트를 지정합니다. 특수한 값을 얻기 위해 사용가능한 매"
"직 문자열들에 대한 내용은 [doc@cfg_TitleTable]문서[/doc]를 참조하십시오."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "보안"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
@@ -6143,37 +6166,37 @@ msgstr ""
"phpMyAdmin은 유저 인터페이스일 뿐이며, 해당 기능들이 MySQL을 제한하지 않습니"
"다."
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "기본 설정"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "인증"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr "인증 설정."
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "서버 환경설정"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr "고급 서버 설정 (이 옵션에 대해 자세히 모른다면 변경하지 마세요)."
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr "서버 연결 파라미터 입력."
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "설정 저장공간"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
@@ -6182,119 +6205,119 @@ msgstr ""
"추가적인 기능을 사용하기 위해 phpMyAdmin 설정 저장공간을 설정하세요. 설명서"
"의 [doc@linked-tables]phpMyAdmin configuration storage[/doc] 참고."
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "변경 추적하기"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr "데이터베이스 변경 추적 기능. phpMyAdmin 설정 저장공간이 필요함."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "내보내기 옵션 사용자화"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "기본 가져오기 사용자화"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "네비게이션 패널 사용자화"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "매인 패널 사용자화"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL 질의문"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL 질의 상자"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr "SQL 쿼리 박스에 표시할 링크를 설정."
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr "SQL 질의문 설정."
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "시작"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr "시작 페이지 사용자화."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "데이터베이스 구조"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr "데이터베이스 구조(테이블 목록)란에서 어떤 정보를 보여줄 지 선택."
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "테이블 구조"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr "테이블 구조(컬럼 목록) 설정."
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "탭"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr "탭이 어떻게 동작할지 선택."
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "릴레이션 스키마 표시"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "용지 크기"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "텍스트 필드"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr "문자열 입력필드 사용자화."
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! 텍스트"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "기본옵션 사용자화"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "경고"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "phpMyAdmin로 인해 출력되는 경고의 일부를 끔."
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
@@ -6302,15 +6325,15 @@ msgstr ""
"가져오기와 내보내기 작업에 [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] 압"
"축 사용."
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "iconv 확장 파라미터"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
@@ -6318,11 +6341,11 @@ msgstr ""
"활성화 할 경우, phpMyAdmin은 다중 쿼리 실행 중 하나가 실패하더라도 실행을 계"
"속합니다."
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "여러 개의 구문 오류 무시"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6332,25 +6355,25 @@ msgstr ""
"것을 허용합니다. 이는, 크기가 큰 파일을 임포트할 때 유용합니다. 하지만, 트랜"
"잭션이 끊어질 수 있습니다."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "일부분만 가져오기: 인터럽트 허용"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "INSERT 에러시 종료하지 않기"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
@@ -6358,67 +6381,67 @@ msgstr ""
"기본 포멧; 주의: 이 리스트는 선택된 데이터베이스와 테이블에 영향을 받습니다. "
"그리고 SQL에서만 가능합니다."
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "가져올 파일의 형식"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "LOCAL 키워드 사용"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "첫행에 컬럼명 출력"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "가져오기시 비어있는 행 제외"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "통화 값 가져오기 ($5.00은 5.00으로 가져옴)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "퍼센티지값을 소수로 가져오기 (12.00%를 .12로)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr "건너뛰고 시작할 쿼리 수."
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "일부분만 가져오기: 쿼리 건너뛰기"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "값이 없는 경우(zero value) AUTO_INCREMENT 사용 금지"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "슬라이더의 초기 상태"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr "한 번에 삽입할 행 개수."
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "입력된 행 갯수"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr "둘러보기 뷰에서 숫자가 아닌 컬럼을 표시할 때 최대 문자 수."
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "컬럼 문자 제한"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6428,21 +6451,21 @@ msgstr ""
"아웃 시 현재 서버만 적용됩니다. FALSE로 설정하면 여러 서버에 연결되어 있을 "
"때 다른 서버에서 로그아웃 하는 것을 잊을 수 있습니다."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "로그아웃시 모든 쿠키 삭제"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr "[kbd]쿠키[/kbd] 인증 모드에서 이전 로그인이 다시 불려질지 여부."
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "유저명 다시 호출"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6453,68 +6476,68 @@ msgstr ""
"0으로, 이는 쿠키가 현재 세션에만 유효하며 브라우저 창을 닫으면 바로 삭제됨을 "
"의미합니다. 이는 신뢰되지 않는 환경에서 권장됩니다."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "로그인 쿠키 저장 시간"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "로그인 쿠키의 유효시간을 설정 (초 단위)."
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "로그인 쿠키 유효시간"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr "LONGTEXT 형식의 컬럼에 대해 두 배 크기의 textarea를 사용."
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEXT의 경우 더 큰 textarea를 사용"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "SQL 쿼리 출력시 사용할 최대 문자수."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "최대한 표시될 SQL 길이"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "사용자는 더 높은 값을 설정 할 수 없습니다"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr "데이터베이스 목록에 표시할 데이터베이스의 최대 갯수."
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "데이터베이스의 최대 갯수"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr "탐색 트리 첫번째 단계에서 페이지 당 보여질 아이템 수."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr "첫번째 단계에서 최대 아이템 갯수"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr "탐색 트리에서 페이지 당 보여질 아이템 수."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr "브렌치 당 최대 아이템 갯수"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6522,19 +6545,19 @@ msgstr ""
"결과셋을 탐색할 때 보여질 행의 수. 만약 결과셋에 설정값 이상의 행이 있다면, "
"\"이전\"과 \"다음 링크가 표시됩니다."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "출력할 최대 행 갯수"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr "테이블 목록에 표시할 테이블의 최대 갯수."
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "최대 테이블 수"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
@@ -6542,41 +6565,41 @@ msgstr ""
"스크립트가 사용 가능한 메모리 최댓값. 예: [kbd]32M[/kbd] ([kbd]0[/kbd] 이면 "
"무제한)."
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "메모리 제한"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "숨겨진 탐색 트리의 항목보기."
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr "탐색 패널에 로고를 보여줌."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "로고 출력"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr "탐색 패널의 로고가 가리키는 URL."
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "로고 링크 URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
@@ -6584,44 +6607,44 @@ msgstr ""
"링크된 페이지를 메인 창([kbd]메인[/kbd])으로 열지, 새 창([kbd]새[/kbd])으로 "
"열지 선택."
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "로고 링크 타겟"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr "네비게이션 패널 맨 위에 서버 선택 메뉴를 표시."
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "서버 선택 출력"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "빠른 접근 아이콘 대상"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "빠른 접근 아이콘 대상"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
"필터 박스에 표시할 아이템(테이블, 뷰, 루틴, 이벤트)의 최소 개수를 정의."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "필터 박스에 표시할 최소 아이템 개수"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "데이터베이스 필터 박스에 표시할 최소 데이터베이스 수"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
@@ -6631,105 +6654,161 @@ msgid ""
"the Databases and Tables tabs above)."
msgstr "네비게이션 트리의 그룹 아이템 (아래 정의된 구분자로 구분)."
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr "트리의 그룹 아이템"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr "데이터베이스를 서로 다른 트리 레벨로 구분하기 위한 문자열."
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "데이터베이스 트리 구분자"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr "테이블을 서로 다른 트리 레벨로 구분하기 위한 문자열."
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "테이블 트리 구분자"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "테이블 트리의 최대 깊이(depth)"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr "마우스 커서 아래의 서버를 강조 표시."
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "강조 표시 사용"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
#, fuzzy
#| msgid "Whether to disable the possibility of database expansion or not."
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr "데이터베이스 확장 가능 여부를 비활성화할 것인지."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "테이블 네비게이션 바"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr "최근 사용한 테이블 최대 개수; 0이면 이 기능 사용 안 함."
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr "즐겨찾기 테이블 최대 개수; 0이면 이 기능 사용 안 함."
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show/Hide tables list"
+msgid "Show tables in tree"
+msgstr "테이블 목록 표시/숨김"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr "최근 사용한 테이블"
+#, fuzzy
+#| msgid "Whether to disable the possibility of database expansion or not."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "데이터베이스 확장 가능 여부를 비활성화할 것인지."
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr "수정, 복사, 삭제 링크가 있음."
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "버전 보기"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr "테이블 열 링크를 표시할 위치"
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show views under database in the navigation tree"
+msgstr "숨겨진 탐색 트리의 항목보기."
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
-msgstr ""
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "함수 필드 보이기"
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "procedures"
+msgid "Show procedures in tree"
+msgstr "프로시저"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "버전 보기"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show events under database in the navigation tree"
+msgstr "숨겨진 탐색 트리의 항목보기."
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr "최근 사용한 테이블 최대 개수; 0이면 이 기능 사용 안 함."
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr "즐겨찾기 테이블 최대 개수; 0이면 이 기능 사용 안 함."
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr "최근 사용한 테이블"
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr "수정, 복사, 삭제 링크가 있음."
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr "테이블 열 링크를 표시할 위치"
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr "테이블과 데이터베이스를 정렬할 때 자연 순서(natural order) 사용."
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "자연순서"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr "아이콘만 사용, 텍스트만 사용, 둘 다 사용."
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "테이블 네비게이션 바"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "HTTP 전송 시 속도에 맞춰 GZip 출력 버퍼를 사용."
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip 출력 버퍼"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
@@ -6737,19 +6816,19 @@ msgstr ""
"[kbd]SMART[/kbd] - 예: TIME, DATE, DATETIME 및 TIMESTAMP 형식 컬럼에 대해 내"
"림차순 정렬, 다른 형식에 대해 오름차순 정렬."
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "기본 정렬 순서"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr "MySQL 데이터베이스에 영속적인 연결 사용."
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "영속적인 연결"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -6758,21 +6837,21 @@ msgstr ""
"데이터베이스 상세 구조 페이지에서, phpMyAdmin 설정 저장용 테이블 중 하나가 없"
"을 경우 출력되는 기본 경고를 끄기."
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin 설정 공간 테이블이 없습니다"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr "MySQL 라이브러리와 서버간의 차이가 있을 때 출력되는 기본 경고를 끄기."
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr "서버/라이브러리 차이점 경고"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
@@ -6780,27 +6859,27 @@ msgstr ""
"테이블의 컬럼 이름이 MySQL 예약어일 경우 구조 페이지에서 출력되는 기본 경고"
"를 끄기."
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr "MySQL 예약어 경고"
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "메뉴탭 보여주기 방식"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr "여러 기능 링크를 표시하는 방법"
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "BLOB, 바이너리 컬럼 편집 허용 안함."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "바이너리 컬럼 보호"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -6810,125 +6889,125 @@ msgstr ""
"다). 비활성화 할 경우, 쿼리 기록으로 JS-routines가 사용됩니다 (창을 닫을 경"
"우 소멸됩니다)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "영구적 쿼리 기록"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr "히스토리에 저장될 쿼리의 갯수."
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "쿼리 기록 길이"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr "문자열 변환을 위한 함수를 선택하세요."
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "기록 엔진"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "조회한 테이블의 정렬 순서를 기억함."
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "테이블의 정렬 순서 기억하기"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr "기본 키를 가진 테이블의 기본 정렬 순서."
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr "기본 키 기본 정렬 순서"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
"X번의 셀 마다 헤더를 다시 보여줍니다. [kbd]0[/kbd]이면 이 기능 비활성화."
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "반복 헤더"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr "격자판 수정: 트리거 동작"
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "연관된 행 표시"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options."
msgid "For display Options"
msgstr "서버보기 옵션."
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "격자판 수정: 수정된 칸들이 한 번에 저장됨"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr "내보내기가 저장될 서버상의 디렉토리."
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "저장 디렉토리"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr "사용하지 않으면 빈칸으로 두세요."
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "호스트 인증 지시"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr "빈칸으로 두면 기본값이 적용됩니다."
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "호스트 인증 규칙"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "암호 없이 로그인 허용"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "루트 사용자 로그인 허용"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "세션 값"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP 인증시 HTTP 기본 렐름 이름."
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP 렐름"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -6937,19 +7016,19 @@ msgstr ""
"[a@http://swekey.com]SweKey hardware authentication[/a] 설정 파일 경로 "
"(document root에 없습니다; 권장값: /etc/swekey.conf)."
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey 설정 파일"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr "사용할 인증 방법."
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "인증 형식"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -6957,11 +7036,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]북마크[/a] 지원이 필요 없는 경우 "
"비워두세요, 추천: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "테이블 즐겨찾기"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
@@ -6969,31 +7048,31 @@ msgstr ""
"컬럼의 주석이나 마임타입을 지정하지 않을 경우 비워두세요. 제안값: "
"[kbd]pma__column_info[/kbd]."
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "컬럼 정보 테이블"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr "MySQL 서버와의 압축된 통신."
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "연결 압축"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "서버와의 연결 방법, 모르면 [kbd]tcp[/kbd]로 두세요."
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "연결 형식"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "유저 비밀번호 제어"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
@@ -7001,21 +7080,21 @@ msgstr ""
"제한된 권한 설정을 위한 특별한 MySQL 사용자 설정. 추가 정보는 [a@http://wiki."
"phpmyadmin.net/pma/controluser]위키[/a]에."
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "유저 제어"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr "설정 저장을 위한 대체서버; 비워두면 이전에 정의된 서버를 사용."
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "호스트 제어"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
@@ -7024,29 +7103,29 @@ msgstr ""
"설정 저장공간을 가지고 있는 서버에 연결할 포트 번호; 빈 값으로 두면 기본값을 "
"사용하거나, controlhost와 host가 같은 경우 다른 곳에 정의된 값을 사용합니다."
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr "제어 포트"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr "정규식에 일치하는 데이터베이스 숨기기 (PCRE)."
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA를 사용할 수 없도록 함"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "데이터베이스 숨기기"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
@@ -7054,38 +7133,38 @@ msgstr ""
"SQL 쿼리 내역 저장 기능을 사용하지 않으려면 빈 칸으로 비워두세요, 권장: "
"[kbd]pma__history[/kbd]."
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL 쿼리 히스토리 테이블"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr "MySQL 서버가 구동중인 호스트의 이름."
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "서버 호스트명"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "로그아웃 URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
"데이터베이스에 저장될 테이블 설정 갯수 제한, 오래된 것은 자동으로 삭제됨."
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "저장될 테이블 설정의 최대 갯수"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr "QBE가 검색 테이블에 저장되었습니다"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7096,13 +7175,13 @@ msgid ""
msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Central columns"
msgid "Central columns table"
msgstr "중심 열"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
@@ -7114,15 +7193,15 @@ msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr "암호없이 연결 시도."
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "암호없이 연결"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
@@ -7131,29 +7210,29 @@ msgstr ""
"MySQL 와일드카드 문자 (%와 _)를 쓸 수 있습니다. 원래 의미로 쓰기 위해서는 이"
"스케이프 하세요([kbd]'my_db'[/kbd]로 하지 말고 [kbd]'my\\_db'[/kbd])."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "리스트에 있는 데이터베이스만 보여주기"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr "config 인증을 사용하지 않을 경우 비워두세요."
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "config 인증용 패스워드"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 권장: [kbd]pma__pdf_pages[/kbd]."
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF 스키마: 페이지 테이블"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -7163,20 +7242,20 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a]를 참고하세요. 이 기능들을 제공하지 않으려"
"면 비워두세요. 권장: [kbd]phpmyadmin[/kbd]."
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "데이터베이스명"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "MySQL 서버의 네트워크 포트. 기본값을 쓰려면 비워두세요."
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "서버 포트"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7188,11 +7267,11 @@ msgstr ""
"데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "최근에 사용한 테이블"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7204,13 +7283,13 @@ msgstr ""
"데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "즐겨찾기 테이블"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7222,11 +7301,11 @@ msgstr ""
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: "
"[kbd]pma__tracking[/kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "연관된 테이블"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
@@ -7234,31 +7313,31 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]인증 타입[/a] 예제를 참조"
"하세요."
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "접속 세션 이름"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "접속 URL"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "MySQL 서버가 listen하고 있는 소켓으로, 비워두면 기본값으로 설정됩니다."
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "서버 소켓"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr "MySQL 서버 연결시 SSL을 활성화합니다."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "SSL 사용"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
@@ -7266,11 +7345,11 @@ msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__table_coords[/"
"kbd]."
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
@@ -7281,11 +7360,11 @@ msgid ""
msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "열 목록 표시"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
@@ -7297,11 +7376,11 @@ msgstr ""
"데이터베이스에 사용자 설정 스토리지를 두지 않으려면 비워둠, 추천: "
"[kbd]pma__userconfig[/kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "UI 설정 테이블"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7309,41 +7388,41 @@ msgstr ""
"데이터베이스 생성 시 DROP DATABASE IF EXISTS 구문을 로그 첫 번째 줄에 추가할"
"지 여부."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE 추가"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
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 구문을 로그 첫 번째 줄에 추가할지 여부."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "DROP TABLE 추가"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
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 구문을 추가할지 여부."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "DROP VIEW 추가"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "문장 추적"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
@@ -7351,21 +7430,21 @@ msgstr ""
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: "
"[kbd]pma__tracking[/kbd]."
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL 쿼리 추적 테이블"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "SQL 쿼리 추적 기능이 테이블과 뷰에 대한 버전을 자동으로 생성할지 여부."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "버전 자동생성"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
@@ -7373,11 +7452,11 @@ msgstr ""
"데이터베이스에 사용자 설정 저장공간을 두지 않으려면 비워둠, 권장: "
"[kbd]pma__userconfig[/kbd]."
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "사용자 설정 스토리지 테이블"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
@@ -7387,11 +7466,11 @@ msgstr ""
"하나라도 값을 비워두면 해당 기능을 사용할 수 없음. 권장: [kbd]pma__users[/"
"kbd]."
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr "사용자 목록"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
@@ -7401,11 +7480,11 @@ msgstr ""
"도 값을 비워두면 해당 기능을 사용할 수 없음. 권장: [kbd]pma__usergroups[/"
"kbd]."
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr "사용자 그룹 테이블"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
@@ -7413,34 +7492,34 @@ msgstr ""
"네비게이션 아이템 숨기기/보이기 기능을 사용하지 않으려면 비워두세요. 권장: "
"[kbd]pma__navigationhiding[/kbd]."
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr "숨겨진 네비게이션 아이템 테이블"
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "설정 인증용 사용자"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
"이 서버에 대한 알기 쉬운 설명. 호스트 이름을 표시하려면 공백으로 두세요."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "이 서버 이름 보기"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "\"모든 행 보기\" 버튼을 출력할지 여부."
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "모든 행 보기 허용"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -7450,130 +7529,130 @@ msgstr ""
"다. 왜나하면 패스워드가 설정 파일에 적혀있기 때문입니다. 이 기능은 같은 명령"
"어를 직접 실행하는 것을 제한하는 기능은 없습니다."
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "비밀번호 변경 폼 보기"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "데이터베이스 생성 폼 보기"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
#, fuzzy
#| msgid ""
#| "Show or hide a column displaying the Creation timestamp for all tables."
msgid "Show or hide a column displaying the comments for all tables."
msgstr "전체 테이블의 생성 시간을 표시하는 컬럼을 보이기/숨기기."
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "테이블 설명"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr "전체 테이블의 생성 시간을 표시하는 컬럼을 보이기/숨기기."
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr "생성 시간 보기"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr "모든 테이블에 대해 최종 업데이트 시간을 표시하는 컬럼을 보이기/숨기기."
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr "최종 업데이트 시간 표시"
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr "모든 테이블에 대해 최종 체크 시간을 표시하는 컬럼을 보이기/숨기기."
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr "최종 체크 시간 표시"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr "편집/삽입 모드에서 타입 필드가 기본적으로 보일지 여부 정의."
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "필드 타입 출력"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr "편집/삽입 모드에서 함수 필드 보이기."
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "함수 필드 보이기"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr "힌트 보여주기 여부."
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "힌트 보여주기"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 출력 링크 표시."
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "phpinfo()링크 표시"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "MYSQL 서버 정보 자세하게 표시"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "phpMyAdmin이 생성한 SQL 쿼리를 표시할지 여부를 정의."
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "SQL 쿼리 보기"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr "쿼리 전송 후 쿼리 박스가 화면상에 남아있을지 여부."
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr "쿼리 박스 유지"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "데이터베이스와 테이블 상태 출력 허용 (사용량 등)."
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "통계보기"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "잠긴 테이블 건너띄기"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected."
msgid ""
@@ -7581,11 +7660,11 @@ msgid ""
"detected."
msgstr "Suhosin이 발견될 경우 메인 페이지에 경고가 표시됩니다."
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "수호신 경고"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the Structure page if "
@@ -7598,55 +7677,55 @@ msgstr ""
"테이블의 컬럼 이름이 MySQL 예약어일 경우 구조 페이지에서 출력되는 기본 경고"
"를 끄기."
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "로그인 쿠키 유효시간"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "텍스트 편집 필드 칸 수"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "텍스트 편집 필드 줄 수"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr "데이터베이스가 선택되었을 때 브라우저 창의 제목."
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr "브라우저 윈도우 제목이 아무것도 선택되지 않았을때."
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "기본 제목"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr "서버가 선택되었을 때의 브라우저 윈도우의 제목."
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "테이블이 선택되었을 때 브라우저 윈도우의 제목"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7654,27 +7733,27 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "IP 허용/거부를 위한 신뢰할만한 프록시 목록"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr "가져오기 파일을 업로드할 서버 상의 디렉토리."
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "업로드 디렉토리"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr "전체 데이터베이스 내에서의 검색 허용."
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "데이터베이스 검색 사용"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
@@ -7682,26 +7761,26 @@ msgstr ""
"꺼져있을 경우, 사용자들은 오른쪽 체크박스에 관계없이 아래의 옵션 중 어느것도 "
"설정할 수 없습니다."
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr "설정화면에서 개발자 탭을 가능하게 함"
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "최신 버전 확인"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr "phpMyAdmin 메인 화면에서 최근 버전 확인을 활성화함."
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "버전 확인"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7713,30 +7792,30 @@ msgstr ""
"고 프록시를 거쳐야 하는 경우 필요합니다. 양식은 \"hostname:포트 번호\" 입니"
"다."
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr "프록시 주소"
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr "프록시 사용자명"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr "프록시를 이용한 인증에 사용할 암호입니다."
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr "프록시 암호"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
@@ -7744,35 +7823,35 @@ msgstr ""
"가져오기와 내보내기 작업들에 대해 [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] 압축이 가능하게 함."
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr "당신의 도메인의 reCaptcha 서비스를 위한 공개키를 입력하세요."
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr "reCaptcha용 공개 키(Public key)"
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr "당신의 도메인의 reCaptcha 서비스를 위한 개인키를 입력하세요."
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr "reCaptcha용 개인 키(Private key)"
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr "오류 보고를 전송하기 전 물어보기."
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr "오류보고서 전송"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
@@ -7780,17 +7859,17 @@ msgstr ""
"질의는 (Ctrl+Enter 대신)Enter를 누르면 실행됩니다. 새 줄은 Shift+Enter로 입"
"력 가능합니다."
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr "제로-설정 모드를 활성화함"
@@ -7816,44 +7895,44 @@ msgstr "HTTP 인증"
msgid "Signon authentication"
msgstr "Signon 인증"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA문을 이용한 CSV 들여오기"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr "Open Document 스프레드시트 형식"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "사용자 지정"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "데이터베이스 내보내기 옵션"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "MS엑셀 CSV 데이터"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr "OpenDocument 형식"
@@ -7882,7 +7961,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr "개요 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!"
@@ -7947,7 +8026,7 @@ msgstr "새 테이블 만들기"
msgid "Number of columns"
msgstr "컬럼수"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
"내보내기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!"
@@ -7991,62 +8070,62 @@ msgstr "테이블 :"
msgid "Format:"
msgstr "형식:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "형식 특정 옵션 :"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "인코딩 변환:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "행 :"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "일부 행을 덤프하기"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "시작행:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "모든 행을 덤프"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "출력:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "서버의 %s 디렉토리에 저장"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "파일명 템플릿:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@는 서버 이름이 됨"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@는 데이터베이스 이름이 됨"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@은 테이블 이름이 됨"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8057,64 +8136,76 @@ msgstr ""
"서 변경할 수 있습니다. 또한, 다음과 같은 변환도 일어납니다: %3$s. 그 외의 문"
"자는 그대로 유지됩니다. 자세한 정보는 %4$sFAQ%5$s를 참고하세요."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "추후 내보내기에 이것을 사용"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "파일 문자셋:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "압축:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zip 압축"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzip 압축"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "출력를 텍스트로 표시"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "뷰를 테이블로 내보내기"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export table headers"
+msgid "Export tables as separate files"
+msgstr "테이블 제목(header) 내보내기"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "파일로 저장"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr "데이터베이스 선택"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr "테이블 선택"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "새로운 데이터베이스명"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr "새 테이블 이름"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr "옛 컬럼 이름"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr "새로운 컬럼 이름"
@@ -8708,7 +8799,7 @@ msgid "Create an index on %s columns"
msgstr "%s 개 열(칼럼)에 인덱스 만들기"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "숨기기"
@@ -8840,11 +8931,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "확인"
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr "테이블 접두사 추가:"
@@ -9061,22 +9147,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr "네비게이션 트리를 불러오는 도중 에러가 발생함"
#: libraries/navigation/Navigation.class.php:192
+#, fuzzy
+#| msgid "Column names: "
+msgid "Groups:"
+msgstr "열(컬럼) 이름: "
+
+#: libraries/navigation/Navigation.class.php:193
msgid "Events:"
msgstr "이벤트:"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
msgid "Functions:"
msgstr "함수:"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
msgid "Procedures:"
msgstr "프로시저:"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
msgid "Tables:"
msgstr "테이블:"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr "뷰:"
@@ -9102,13 +9194,13 @@ msgstr "내비게이션 패널"
msgid "Reload navigation panel"
msgstr "내비게이션 패널 새로고침"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, fuzzy, php-format
#| msgid "%s other result found"
#| msgid_plural "%s other results found"
@@ -9116,22 +9208,22 @@ msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] "%s 개의 결과가 발견됨"
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr "데이터베이스 이름 또는 정규식으로 필터링"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "빠른 필터 비우기"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr "이름 또는 정규식으로 필터링"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr "전부 접기"
@@ -9165,7 +9257,7 @@ msgstr "새"
msgid "Database operations"
msgstr "데이터베이스 연산"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr "숨겨진 항목 보기"
@@ -10361,13 +10453,13 @@ msgstr "열(컬럼) 이름: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV를 가져오기 위한 파라미터가 잘못됨: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -10376,14 +10468,14 @@ msgstr ""
"지정한 컬럼(%s)이 잘못되었습니다. 각 컬럼의 이름에 대해, 오타가 없는지, 콤마"
"로 구분되어 있는지 확인하시고, 컬럼 이름을 따옴표로 묶지 않도록 하세요."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, fuzzy, php-format
#| msgid "Invalid rule declaration on line %s."
msgid "Invalid format of CSV input on line %d."
msgstr "%s 행에 잘못된 규칙 선언"
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
#| msgid "Invalid rule declaration on line %s."
msgid "Invalid column count in CSV input on line %d."
@@ -10742,53 +10834,53 @@ msgstr "텍스트를 SQL 쿼리형식으로 문법 강조를 합니다."
msgid "Formats text as XML with syntax highlighting."
msgstr "텍스트를 SQL 쿼리형식으로 문법 강조를 합니다."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "오류: 릴레이션이 이미 존재함."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY 릴레이션이 추가됨"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "오류: 외래키 릴레이션을 추가할 수 없습니다!"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr "오류: 릴레이션 기능이 비활성화 되어 있음!"
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "내부 릴레이션이 추가됨"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "오류: 릴레이션이 추가되지 않음."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr "외래키 릴레이션이 제거되었습니다."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "오류: 외래키 릴레이션을 제거할 수 없습니다!"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr "오류: 내부 릴레이션을 제거할 수 없습니다!"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr "내부 릴레이션이 제거되었습니다."
@@ -10882,41 +10974,47 @@ msgstr "Query-By-Example 검색을 저장"
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "테이블의 정렬 순서 기억하기"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "고급 기능을 설정을 쉽게 설정하기:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr "%screate_tables.sql에서 필요한 테이블을 생성하세요."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "생성한 테이블에 접근할 수 있는 pma 사용자를 생성하세요."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr "수정된 설정 파일을 적용하기 위해 phpMyAdmin에 다시 로그인해야 합니다."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "설명이 없습니다"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -10924,14 +11022,14 @@ msgid ""
"configuration storage there."
msgstr "phpMyAdmin 설정 공간 테이블이 없습니다"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "phpMyAdmin 설정 공간 테이블이 없습니다"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -11680,7 +11778,7 @@ msgstr "표시할 이벤트가 없습니다."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr "현재 서버:"
@@ -16334,9 +16432,6 @@ msgstr "concurrent_insert가 0으로 설정되었습니다"
#~ msgid "Delete tracking data for this table"
#~ msgstr "이 테이블에 대한 추적 데이터를 제거"
-#~ msgid "Show versions"
-#~ msgstr "버전 보기"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
diff --git a/po/ksh.po b/po/ksh.po
index fb98e35839..73868f4b5c 100644
--- a/po/ksh.po
+++ b/po/ksh.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-10-02 15:09+0200\n"
"Last-Translator: Purodha
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select All"
msgid "Select database first"
msgstr "Alle ußwähle"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Table"
msgid "tables"
msgstr "Tabäll"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr ""
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2363,439 +2406,439 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
-msgid "Show arguments"
+#, php-format
+msgid "%s argument(s) passed"
msgstr ""
#: js/messages.php:595
+msgid "Show arguments"
+msgstr ""
+
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr ""
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr ""
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr ""
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr ""
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr ""
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr ""
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr ""
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr ""
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr ""
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr ""
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr ""
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr ""
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr ""
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Select All"
msgid "Please enter a valid date"
msgstr "Alle ußwähle"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2866,16 +2909,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2894,7 +2937,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3075,7 +3118,7 @@ msgid "Count:"
msgstr ""
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3250,25 +3293,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3344,6 +3387,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Alle ußwähle"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Alle nit mieh ußwähle"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3397,7 +3450,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3689,7 +3742,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3700,34 +3753,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -3822,8 +3854,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -3929,7 +3961,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr ""
@@ -3998,16 +4030,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4508,7 +4530,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4525,7 +4547,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4638,17 +4660,6 @@ msgstr ""
msgid "Rows"
msgstr "Reije"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4808,7 +4819,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4816,24 +4827,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5061,7 +5072,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5456,7 +5467,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5465,7 +5476,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5492,15 +5503,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5516,14 +5527,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5593,7 +5604,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5610,8 +5621,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5724,15 +5735,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5760,7 +5771,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5805,341 +5816,349 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+msgid "Navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6147,1061 +6166,1101 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
+#: libraries/config/messages.inc.php:487
+msgid "Show tables in tree"
msgstr ""
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
msgid "Favorites table"
msgstr "Ein Tabäll"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7209,52 +7268,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7262,80 +7321,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7359,44 +7418,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7425,7 +7484,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7490,7 +7549,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7533,62 +7592,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7596,70 +7655,78 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "Alle ußwähle"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "Alle ußwähle"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "The database name is empty!"
msgid "New database name"
msgstr "Kein Name för di Dahtebangk!"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8213,7 +8280,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8345,11 +8412,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8562,22 +8624,26 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
-msgid "Tables:"
+msgid "Procedures:"
msgstr ""
#: libraries/navigation/Navigation.class.php:196
+msgid "Tables:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8601,13 +8667,13 @@ msgstr ""
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -8615,20 +8681,20 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8662,7 +8728,7 @@ msgstr ""
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9800,26 +9866,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10149,47 +10215,47 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr ""
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr ""
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr ""
@@ -10274,54 +10340,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11039,7 +11109,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/ky.po b/po/ky.po
index 89cdf5c62e..44694bf5e3 100644
--- a/po/ky.po
+++ b/po/ky.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-02-03 16:59+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select All"
msgid "Select database first"
msgstr "Баарын танда"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Table"
msgid "tables"
msgstr "Жадыбал"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Action"
msgid "functions"
msgstr "Кыймыл"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2383,441 +2426,441 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments:"
msgid "Show arguments"
msgstr "Жадыбал жөнүндө маалымат:"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr ""
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr ""
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr ""
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr ""
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr ""
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr ""
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr ""
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr ""
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr ""
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr ""
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr ""
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr ""
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr ""
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Select All"
msgid "Please enter a valid date"
msgstr "Баарын танда"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2888,16 +2931,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2916,7 +2959,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3096,7 +3139,7 @@ msgid "Count:"
msgstr ""
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3271,25 +3314,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3363,6 +3406,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Баарын танда"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Баарынан баш тарт"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3416,7 +3469,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3712,7 +3765,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3723,34 +3776,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -3847,8 +3879,8 @@ msgstr "\"%s\" мамычанын мааниси"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -3951,7 +3983,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr ""
@@ -4020,16 +4052,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4528,7 +4550,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4545,7 +4567,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4658,17 +4680,6 @@ msgstr ""
msgid "Rows"
msgstr "катарлар"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4830,7 +4841,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4838,24 +4849,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5083,7 +5094,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5478,7 +5489,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5487,7 +5498,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5514,15 +5525,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5538,14 +5549,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5615,7 +5626,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5632,8 +5643,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5746,15 +5757,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5782,7 +5793,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5827,341 +5838,349 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+msgid "Navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6169,1067 +6188,1109 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Table comments:"
+msgid "Show tables in tree"
+msgstr "Жадыбал жөнүндө маалымат:"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Value for the column \"%s\""
msgid "Central columns table"
msgstr "\"%s\" мамычанын мааниси"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Favorites table"
msgstr "%s жадыбал"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments:"
msgid "Show table comments"
msgstr "Жадыбал жөнүндө маалымат:"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7237,52 +7298,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7290,80 +7351,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7387,44 +7448,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7453,7 +7514,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7518,7 +7579,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7561,62 +7622,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7624,70 +7685,78 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "Баарын танда"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "Баарын танда"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "The database name is empty!"
msgid "New database name"
msgstr "Берилигтер базасынын аты бош калды!"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8245,7 +8314,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8377,11 +8446,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8594,22 +8658,26 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
-msgid "Tables:"
+msgid "Procedures:"
msgstr ""
#: libraries/navigation/Navigation.class.php:196
+msgid "Tables:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8633,33 +8701,33 @@ msgstr ""
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8693,7 +8761,7 @@ msgstr ""
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9837,26 +9905,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10186,59 +10254,59 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Файл окулбай жатат"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "Internal relation has been added."
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Файл окулбай жатат"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "FOREIGN KEY relation has been removed."
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Файл окулбай жатат"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Файл окулбай жатат"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "Internal relation has been removed."
@@ -10325,54 +10393,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11089,7 +11161,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/li.po b/po/li.po
index 15bf55cdb7..fb6a3d6b34 100644
--- a/po/li.po
+++ b/po/li.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-12-21 13:06+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -226,20 +226,56 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:36 db_structure.php:88 db_tracking.php:89 export.php:364
+#: db_export.php:36 db_structure.php:88 db_tracking.php:89 export.php:381
#: libraries/DBQbe.class.php:326
-#: libraries/navigation/NavigationTree.class.php:867
+#: libraries/navigation/NavigationTree.class.php:897
msgid "No tables found in database."
msgstr ""
-#: db_export.php:44 libraries/DbSearch.class.php:446
-#: libraries/display_export.lib.php:44 libraries/replication_gui.lib.php:373
-msgid "Select All"
+#: db_export.php:49 libraries/ServerStatusData.class.php:128
+#: libraries/build_html_for_db.lib.php:28
+#: libraries/config/messages.inc.php:252
+#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
+#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
+#: libraries/plugins/export/ExportXml.class.php:120
+#: libraries/structure.lib.php:3240
+msgid "Tables"
msgstr ""
-#: db_export.php:50 libraries/DbSearch.class.php:450
-#: libraries/display_export.lib.php:50 libraries/replication_gui.lib.php:375
-msgid "Unselect All"
+#: db_export.php:50 libraries/Menu.class.php:315 libraries/Menu.class.php:423
+#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
+#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
+#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
+#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
+#: libraries/config.values.php:47 libraries/config.values.php:109
+#: libraries/config.values.php:115 libraries/config/setup.forms.php:320
+#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:386
+#: libraries/config/user_preferences.forms.php:219
+#: libraries/config/user_preferences.forms.php:259
+#: libraries/config/user_preferences.forms.php:285
+#: libraries/import.lib.php:1293
+#: libraries/navigation/Nodes/Node_Column.class.php:42
+#: libraries/navigation/Nodes/Node_Database.class.php:53
+#: libraries/navigation/Nodes/Node_Table.class.php:285
+#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
+#: templates/columns_definitions/table_fields_definitions.phtml:3
+#: templates/designer/table_list.phtml:28
+msgid "Structure"
+msgstr ""
+
+#: db_export.php:51 libraries/build_html_for_db.lib.php:38
+#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:368
+#: libraries/config/setup.forms.php:391 libraries/config/setup.forms.php:396
+#: libraries/config/user_preferences.forms.php:231
+#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/user_preferences.forms.php:290
+#: libraries/config/user_preferences.forms.php:295
+#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
+msgid "Data"
+msgstr ""
+
+#: db_export.php:54
+msgid "Select all"
msgstr ""
#: db_operations.php:51 tbl_create.php:24
@@ -297,7 +333,7 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:125 db_tracking.php:287 libraries/Menu.class.php:247
-#: libraries/config/messages.inc.php:798
+#: libraries/config/messages.inc.php:815
#: libraries/plugins/export/ExportXml.class.php:498
#: libraries/rte/rte_list.lib.php:87 libraries/rte/rte_triggers.lib.php:331
#: libraries/server_privileges.lib.php:1167
@@ -343,7 +379,7 @@ msgstr ""
msgid "Action"
msgstr ""
-#: db_tracking.php:131 libraries/navigation/Navigation.class.php:218
+#: db_tracking.php:131 libraries/navigation/Navigation.class.php:219
#: libraries/tracking.lib.php:280 tbl_change.php:160
msgid "Show"
msgstr ""
@@ -412,11 +448,11 @@ msgstr ""
msgid "You may want to refresh the page."
msgstr ""
-#: export.php:186 schema_export.php:61
+#: export.php:189 schema_export.php:61
msgid "Bad type!"
msgstr ""
-#: export.php:267
+#: export.php:281
msgid "Bad parameters!"
msgstr ""
@@ -509,7 +545,7 @@ msgstr ""
#: libraries/browse_foreigners.lib.php:142 libraries/core.lib.php:610
#: libraries/display_change_password.lib.php:109
#: libraries/display_create_table.lib.php:72
-#: libraries/display_export.lib.php:303 libraries/display_export.lib.php:309
+#: libraries/display_export.lib.php:314 libraries/display_export.lib.php:320
#: libraries/display_import.lib.php:392 libraries/index.lib.php:44
#: libraries/insert_edit.lib.php:1540 libraries/insert_edit.lib.php:1577
#: libraries/normalization.lib.php:164 libraries/normalization.lib.php:820
@@ -556,7 +592,7 @@ msgstr ""
msgid "Succeeded"
msgstr ""
-#: import.php:58 js/messages.php:493
+#: import.php:58 js/messages.php:494
msgid "Failed"
msgstr ""
@@ -611,7 +647,7 @@ msgid ""
"Cannot convert file's character set without character set conversion library!"
msgstr ""
-#: import.php:615 libraries/display_import.inc.php:32
+#: import.php:615 libraries/display_import.inc.php:33
msgid "Could not load import plugins, please check your installation!"
msgstr ""
@@ -643,7 +679,7 @@ msgid "Could not load the progress of the import."
msgstr ""
#: import_status.php:112 js/messages.php:372 libraries/Util.class.php:738
-#: libraries/export.lib.php:464
+#: libraries/export.lib.php:515
#: libraries/plugins/schema/Export_Relation_Schema.class.php:302
#: user_password.php:208
msgid "Back"
@@ -738,7 +774,7 @@ msgstr ""
#: index.php:392 libraries/Util.class.php:432 libraries/Util.class.php:493
#: libraries/config/FormDisplay.tpl.php:151
-#: libraries/display_export.lib.php:477 libraries/engines/pbxt.lib.php:162
+#: libraries/display_export.lib.php:488 libraries/engines/pbxt.lib.php:162
#: libraries/navigation/NavigationHeader.class.php:197
#: libraries/server_variables.lib.php:160
msgid "Documentation"
@@ -1207,7 +1243,7 @@ msgstr "KiB"
#. l10n: shortcuts for Megabyte
#: js/messages.php:169 libraries/Util.class.php:1411
-#: libraries/display_export.lib.php:702
+#: libraries/display_export.lib.php:747
#: libraries/server_status_monitor.lib.php:218
msgid "MiB"
msgstr "MiB"
@@ -1260,7 +1296,7 @@ msgid "Please add at least one variable to the series!"
msgstr ""
#: js/messages.php:183 libraries/DisplayResults.class.php:1495
-#: libraries/config.values.php:69 libraries/display_export.lib.php:587
+#: libraries/config.values.php:69 libraries/display_export.lib.php:598
#: libraries/plugins/export/ExportSql.class.php:2091
#: libraries/plugins/schema/SchemaPdf.class.php:102
#: libraries/server_privileges.lib.php:2920
@@ -1449,7 +1485,7 @@ msgstr ""
msgid "Explain output"
msgstr ""
-#: js/messages.php:238 js/messages.php:752
+#: js/messages.php:238 js/messages.php:753
#: libraries/plugins/export/ExportHtmlword.class.php:471
#: libraries/plugins/export/ExportOdt.class.php:587
#: libraries/plugins/export/ExportTexytext.class.php:426
@@ -1774,7 +1810,7 @@ msgstr ""
#: libraries/Util.class.php:3678 libraries/Util.class.php:3679
#: libraries/central_columns.lib.php:853
#: libraries/central_columns.lib.php:1177
-#: libraries/config/messages.inc.php:777
+#: libraries/config/messages.inc.php:794
#: libraries/server_user_groups.lib.php:119
#: libraries/server_variables.lib.php:233 setup/frames/index.inc.php:179
msgid "Edit"
@@ -1879,7 +1915,7 @@ msgid "Second step of normalization (2NF)"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:367 js/messages.php:621 libraries/normalization.lib.php:287
+#: js/messages.php:367 js/messages.php:622 libraries/normalization.lib.php:287
msgid "Done"
msgstr ""
@@ -2029,7 +2065,7 @@ msgstr ""
msgid "Data point content"
msgstr ""
-#: js/messages.php:424 js/messages.php:555 js/messages.php:571
+#: js/messages.php:424 js/messages.php:556 js/messages.php:572
#: libraries/Error_Handler.class.php:345 libraries/insert_edit.lib.php:2562
#: templates/index_form.phtml:154 templates/index_form.phtml:194
msgid "Ignore"
@@ -2162,185 +2198,190 @@ msgstr ""
msgid "%d object(s) created."
msgstr ""
-#: js/messages.php:474
-msgid "Press escape to cancel editing."
+#: js/messages.php:472 libraries/mult_submits.lib.php:366
+#: libraries/mult_submits.lib.php:399 libraries/sql_query_form.lib.php:407
+msgid "Submit"
msgstr ""
#: js/messages.php:475
+msgid "Press escape to cancel editing."
+msgstr ""
+
+#: js/messages.php:476
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:476
+#: js/messages.php:477
msgid "Drag to reorder."
msgstr ""
-#: js/messages.php:477
+#: js/messages.php:478
msgid "Click to sort results by this column."
msgstr ""
-#: js/messages.php:478
+#: js/messages.php:479
msgid ""
"Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
"ORDER BY clause"
msgstr ""
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr ""
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr ""
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr ""
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr ""
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr ""
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2348,437 +2389,437 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
-msgid "Show arguments"
+#, php-format
+msgid "%s argument(s) passed"
msgstr ""
#: js/messages.php:595
+msgid "Show arguments"
+msgstr ""
+
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "jannewarie"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "fibberwarie"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "miert"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "april"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "mei"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "juni"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "juli"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "augustus"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "september"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "oktober"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "november"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "mei"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "dec"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr ""
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr ""
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr ""
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr ""
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Oer"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "secónd"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr ""
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2849,16 +2890,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2877,7 +2918,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3055,7 +3096,7 @@ msgid "Count:"
msgstr ""
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3226,25 +3267,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3318,6 +3359,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr ""
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr ""
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3371,7 +3422,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3663,7 +3714,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3674,34 +3725,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3796,8 +3826,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -3900,7 +3930,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr ""
@@ -3969,16 +3999,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4477,7 +4497,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4494,7 +4514,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4607,17 +4627,6 @@ msgstr ""
msgid "Rows"
msgstr ""
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4773,7 +4782,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4781,24 +4790,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5018,7 +5027,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5413,7 +5422,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5422,7 +5431,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5449,15 +5458,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5473,14 +5482,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5550,7 +5559,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5567,8 +5576,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5681,15 +5690,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5717,7 +5726,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5762,341 +5771,349 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+msgid "Navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6104,1060 +6121,1100 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
+#: libraries/config/messages.inc.php:487
+msgid "Show tables in tree"
msgstr ""
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
msgid "Favorites table"
msgstr ""
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
msgid "Show table comments"
msgstr ""
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7165,52 +7222,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7218,80 +7275,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7315,44 +7372,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7381,7 +7438,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7446,7 +7503,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7489,62 +7546,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7552,64 +7609,72 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr ""
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr ""
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr ""
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8163,7 +8228,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8295,11 +8360,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8512,22 +8572,26 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
-msgid "Tables:"
+msgid "Procedures:"
msgstr ""
#: libraries/navigation/Navigation.class.php:196
+msgid "Tables:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8551,33 +8615,33 @@ msgstr ""
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8611,7 +8675,7 @@ msgstr ""
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9746,26 +9810,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10094,47 +10158,47 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr ""
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr ""
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr ""
@@ -10219,54 +10283,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -10983,7 +11051,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 838e8c1cad..65fa8a9a1f 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-02-15 18:57+0200\n"
"Last-Translator: Vytautas Motuzas
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Rodyti viską"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Pirminė padėtis"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Atšaukti"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Nutraukta"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
msgstr "Importuoti numatytąsias reikšmes"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Pasirinkite lenteles"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
msgstr "Eiti pagal nuorodą"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Stulpelių vardai"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Generuoti slaptažodį"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generuoti"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Pakeisti slaptažodį"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Daugiau"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Rodyti viską"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Hide indexes"
msgid "Hide Panel"
msgstr "Nerodyti indeksų"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show hidden navigation tree items."
msgstr "Logotipą rodyti kairiame rėmelyje"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Customize main frame"
msgid "Link with main panel"
msgstr "Adaptuoti pagrindinė rėmelį"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Customize main frame"
msgid "Unlink from main panel"
msgstr "Adaptuoti pagrindinė rėmelį"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Lentelės"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "Rodinys (Views)"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Procedūros"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "event"
msgid "events"
msgstr "įvykis"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Funkcijos"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2618,137 +2661,137 @@ msgstr ""
"atnaujinimą. Naujausia versija yra %s, išleista %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", naujausia stabili versija:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "naujausias"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Sukurti rodinį"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
#| msgid "Server port"
msgid "Send Error Report"
msgstr "Serverio jungtis"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "Keisti nustatymus"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Show open tables"
msgid "Show Report Details"
msgstr "Rodyti atidarytas lenteles"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignoruoti"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Rodyti šią užklausą vėl"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "Ar tikrai norite vykdyti „%s“?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Executed queries"
msgid "%s queries executed %s times in %s seconds."
msgstr "Įvykdytos užklausos"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Lentelės komentarai"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Slėpti paieškos rezultatus"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Ankstesnis"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2756,149 +2799,149 @@ msgid "Next"
msgstr "Kitas"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "Šiandien"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "sausio"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "vasario"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "kovo"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "balandžio"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Geg"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "birželio"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "liepos"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "rugpjūčio"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "rugsėjo"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "spalio"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "lapkričio"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "gruodžio"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Sau"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Vas"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Kov"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Bal"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Geg"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Bir"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Lie"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Rgp"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Rgs"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Spa"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Lap"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Grd"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Sekmadienis"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Pirmadienis"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Antradienis"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Trečiadienis"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Ketvirtadienis"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Penktadienis"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Šeštadienis"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2906,205 +2949,205 @@ msgid "Sun"
msgstr "Sek"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Pir"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Ant"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Tre"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Ket"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pen"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Šeš"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Sk"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Pr"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "An"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Tr"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Kt"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Pn"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Št"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Sav."
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Ne"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Valanda"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minutė"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekundės"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Naudokite teksto įvedimo lauką"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid email address"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid URL"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date ( ISO )"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid credit card number"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter only digits"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter the same value again"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter at least {0} characters"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value between {0} and {1}"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value less than or equal to {0}"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid date or time"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid HEX input"
msgstr "Neteisingas jungties skaičius"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3180,17 +3223,17 @@ msgstr "per valandą"
msgid "per day"
msgstr "per dieną"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Esamo konfigūracinio failo (%s) neina nuskaityti."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Blogos teisės konfigūracinio failo, neturėtų būti įrašymo galimybė visiems!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Šrifto dydis"
@@ -3211,7 +3254,7 @@ msgid "Requery"
msgstr "SQL užklausa"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3436,7 +3479,7 @@ msgid "Count:"
msgstr "Stulpelis"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3645,7 +3688,7 @@ msgstr "Rodomos žymelės"
msgid "Delete bookmark"
msgstr "Ištrinti sąryšį"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3653,21 +3696,21 @@ msgid ""
"configured)."
msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatsako"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detalės…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3745,6 +3788,16 @@ msgstr "Žodžiai atskirti tarpo simboliu („ “)."
msgid "Inside tables:"
msgstr "Viduje lentelių:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Pažymėti visas"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Atžymėti visas"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Stulpelio viduje:"
@@ -3812,7 +3865,7 @@ msgid "All"
msgstr "Viską"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Eilučių skaičius:"
@@ -4132,7 +4185,7 @@ msgstr ""
"Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Serveris"
@@ -4143,34 +4196,13 @@ msgstr "Serveris"
msgid "View"
msgstr "Rodinys"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktūra"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4267,8 +4299,8 @@ msgstr "Textarea stulpeliai"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Duomenų bazės"
@@ -4386,7 +4418,7 @@ msgid "Recent"
msgstr "Atstatyti į pradinę būseną"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4466,16 +4498,6 @@ msgstr ""
msgid "Sorting"
msgstr "Rikiavimas"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Lentelės"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -5006,7 +5028,7 @@ msgstr "Didžiausias dydis: %s%s"
msgid "MySQL said: "
msgstr "MySQL atsakymas: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Paaiškinti SQL"
@@ -5023,7 +5045,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "be PHP kodo"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP kodas"
@@ -5142,17 +5164,6 @@ msgstr "Naudokite šią reikšmę"
msgid "Rows"
msgstr "Eilutės"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Duomenys"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5330,7 +5341,7 @@ msgstr "Serveris"
msgid "Invalid authentication method set in configuration:"
msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5338,24 +5349,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "galimas pažeidžiamumas"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5601,7 +5612,7 @@ msgid "Set value: %s"
msgstr "Nustatyti reikšmę: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Atstatyti numatytąsias reikšmes"
@@ -6127,7 +6138,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Ilgiausias vykdymo laikas"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Add %s statement"
msgid "Use %s statement"
@@ -6137,7 +6148,7 @@ msgstr "Įtraukti %s sakinį"
msgid "Save as file"
msgstr "Išsaugoti į failą"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Failo simbolių koduotė"
@@ -6164,17 +6175,17 @@ msgstr "Glaudinimas"
msgid "Put columns names in the first row"
msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Columns enclosed with:"
msgid "Columns enclosed with"
msgstr "Laukų reikšmės apskliaustos su:"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Columns escaped with:"
msgid "Columns escaped with"
@@ -6194,16 +6205,16 @@ msgstr "Pakeisti NULL į:"
msgid "Remove CRLF characters within columns"
msgstr "Pašalinti CRLF simbolius laukeliuose"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "Laukai baigiasi"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated with:"
msgid "Lines terminated with"
@@ -6275,7 +6286,7 @@ msgid "Save on server"
msgstr "Išsaugoti serveryje"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Perrašyti esamus failus"
@@ -6292,8 +6303,8 @@ msgstr "Pridėti AUTO_INCREMENT reikšmę"
msgid "Enclose table and column names with backquotes"
msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL suderinamumo režimas"
@@ -6420,17 +6431,17 @@ msgid "Customize browse mode."
msgstr "Adaptuoti naršymo režimą"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "Pasirinkti numatytuosius nustatymus"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6464,7 +6475,7 @@ msgstr "Eksportuoti numatytąsias reikšmes"
msgid "Customize default export options."
msgstr "Pasirinkti numatytuosius eksportavimo nustatymus"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Galimybės"
@@ -6521,48 +6532,60 @@ msgstr "Navigacijos rėmelis"
msgid "Customize appearance of the navigation panel."
msgstr "Adaptuoti navigacijos rėmelio išvaizdą"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation frame"
+msgid "Navigation tree"
+msgstr "Navigacijos rėmelis"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation frame"
+msgid "Customize the navigation tree."
+msgstr "Adaptuoti navigacijos rėmelį"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Serveriai"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "Serverių rodymo nustatymai"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "Lentelių rodymo nustatymai"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
msgstr "Pagrindinis rėmelis"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Kiti branduolio nustatymai"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "Kiti nustatymai"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Puslapių pavadinimai"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6576,11 +6599,11 @@ msgstr ""
"[doc@cfg_TitleTable]dokumentacija[/doc] magiškiesiems tekstams, kurie bus "
"paversti specialiomis reikšmėmis."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Saugumas"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6592,25 +6615,25 @@ msgstr ""
"Atkreipkite dėmesį, kad phpMyAdmin yra tik vartotojo sąsaja ir jo galimybės "
"neriboja MySQL"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Pagrindiniai nustatymai"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Atpažinimas"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "Atpažinimo nustatymai"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Serverio nustatymai"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6622,17 +6645,17 @@ msgstr ""
"Išplėstinė serverio konfigūracija, nekeiskite šių nustatymų nebent žinote "
"kam jie skirti"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "Įvesti serverio ryšio nustatymus"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Nustatymų saugykla"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
@@ -6647,11 +6670,11 @@ msgstr ""
"papildomų funkcijų, dokumentacijoje žiūrėkite [doc@linked-tables]phpMyAdmin "
"nustatymų saugykla[/doc]"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Pakeitimų sekimas"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6659,69 +6682,69 @@ msgstr ""
"Sekti duomenų bazėje atliktus pakeitimus. Reikia phpMyAdmin nustatymų "
"saugyklos."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Adaptuoti eksportavimo nustatymus"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Adaptuoti importavimo numatytąsias reikšmes"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
msgstr "Adaptuoti navigacijos rėmelį"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
msgstr "Adaptuoti pagrindinė rėmelį"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL užklausos"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL užklausos langelis"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "Adaptuoti nuorodas rodomas SQL užklausos langelyje"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "SQL užklausų nustatymai"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Paleidimas"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "Adaptuoti paleidimo (pagrindinį) puslapį"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database for user"
msgid "Database structure"
msgstr "Vartotojo duomenų bazė"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6729,59 +6752,59 @@ msgstr ""
msgid "Table structure"
msgstr "Vartotojo duomenų bazė"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Kortelės"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "Pasirinkti kaip norite, kad veiktų kortelės"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Rodyti sąryšių schema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Lapo dydis"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Teksto laukeliai"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "Adaptuoti teksto įvedimo laukelius"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! tekstas"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Pasirinkti numatytuosius nustatymus"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Perspėjimai"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Išjungti keletą perspėjimų kuriuos rodo phpMyAdmin"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6793,15 +6816,15 @@ msgstr ""
"Įjungti [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] glaudinimą importavimo "
"ir eksportavimo nustatymams"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Papildomas parametras iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6813,11 +6836,11 @@ msgstr ""
"Jeigu įjungta, phpMyAdmin tęsia įvairių-sakinių užklausų paleidinėjimą netgi "
"jei viena užklausa nepavyksta"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignoruoti įvairias sakinių klaidas"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6827,25 +6850,25 @@ msgstr ""
"vykdymo laiko ribos. Gali būti naudinga importuojant didelius failus, tačiau "
"gali sugadinti tranzakcijas."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Dalinis importas: leisti pertrauktis"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Nenutraukti įvykus INSERT klaidai"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6857,62 +6880,62 @@ msgstr ""
"Numatytasis formatas; žinokite, kad šis sąrašas priklauso nuo vietos "
"(duomenų bazė, lentelė) ir tik SQL visada pasiekiamas"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Įkelto failo formatas"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Naudoti LOCAL raktažodį"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Stulpelių pavadinimai pirmoje eilutėje"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Neimportuoti tuščių eilučių"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importuoti valiutas ($5.00 kaip 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importuoti procentus kaip dešimtainius (12.00% kaip .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "Praleisti užklausų skaičių nuo pradžios"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Dalinis importas: praleisti užklausas"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Nenaudoti AUTO_INCREMENT nulinėms reikšmėms"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "Kiek eilučių gali būti įdėta per vieną kartą"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Įkeltų eilučių skaičius"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
#, fuzzy
#| msgid ""
#| "Maximum number of characters shown in any non-numeric column on browse "
@@ -6921,11 +6944,11 @@ msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr "Didžiausias rodomas simbolių kiekis ne skaitiniuose stulpeliuose"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Apriboti stulpelių simbolius"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6936,11 +6959,11 @@ msgstr ""
"lengva pamiršti atsijungi iš kitų skirtingų serverių (prie kurių esate "
"prisijungę)."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Ištrinti visus slapukus atsijungiant"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
@@ -6952,11 +6975,11 @@ msgstr ""
"Slapta frazė naudojama šifruojant slapukus [kbd]slapukų[/kbd] "
"identifikacijoje"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6968,79 +6991,79 @@ msgstr ""
"egzistuojančioje sesijoje ir bus ištrinta naršyklės uždarymo momentu. "
"Rekomenduojama nepatikimose aplinkose."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Prisijungimo slapuko saugojimas"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Nustatyti prisijungimo slapuko galiojimo laiką (sekundžių tikslumu)"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Prisijungimo slapuko galiojimas"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Padvigubinti LONGTEXT laukelių dydį"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Didesnis textarea LONGTEXT'ui"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
"Didžiausias leistinas simbolių kiekis naudojamas SQL užklausai parodyti"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Maksimalus SQL rodymo ilgis"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Naudotojai negali nustatyti didesnės reikšmės"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of databases displayed in database list."
msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Didžiausias duomenų bazių skaičius"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for input field"
msgid "Maximum items on first level"
msgstr "Didžiausias dydis įvedimo laukeliui"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -7049,21 +7072,21 @@ msgstr ""
"rinkinys turi daugiau eilučių, „Ankstesnis“ ir „Kitas“ saito nuorodos bus "
"parodytos."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Maksimalus skaičius eilučių rodymui"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table list."
msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Didžiausias skaičius lentelių"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
@@ -7075,45 +7098,45 @@ msgstr ""
"Skaičius leidžiamų paskirti baitų scenarijui (skriptui), pvz., [kbd]32M[/"
"kbd] ([kbd]0[/kbd] neriboja)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Atminties apribojimai"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show databases navigation as tree"
msgstr "Logotipą rodyti kairiame rėmelyje"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "Logotipą rodyti kairiame rėmelyje"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Rodyti logotipą"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "Adresas kur nuves logotipas esantis navigacijos rėmelyje"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Logotipo saito adresas"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
#, fuzzy
#| msgid ""
#| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
@@ -7125,29 +7148,29 @@ msgstr ""
"Atidaryti susijusį puslapį pagrindiniame lange ([kbd]pagrindiniame[/kbd]) "
"arba ([kbd]naujame[/kbd])"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Logotipas nukreipia į nuorodą"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel."
msgstr "Rodyti serverio pasirinkimus viršuje kairiame rėmelyje"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Rodyti serverių pasirinkimą"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid ""
@@ -7155,19 +7178,19 @@ msgid ""
"display a filter box."
msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of items to display the filter box"
msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Only light version; display databases in a tree (determined by the "
@@ -7178,125 +7201,181 @@ msgid ""
msgstr ""
"Tik maža versija; rodyti duomenų bazės medį (skyriklis nustatomas žemiau)"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
msgstr "Simboliai kurie atskiria duomenų bazes į atskiras medžio šakas"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Duomenų bazės medžio skyriklis"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
msgstr "Simboliai kurie atskiria lenteles į skirtingas medžio šakas"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Lentelės medžio skyriklis"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Maksimalus lentelių medžio gylis"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "Paryškinti serverį užvedus pelės žymekliu"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Įjungti paryškinimą"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Enable navigation tree expansion"
msgstr "Piktograminė navigacijos juostelė"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Rodyti lentelės"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Logotipą rodyti kairiame rėmelyje"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Rodyti versijas"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Logotipą rodyti kairiame rėmelyje"
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Rodyti funkcijų laukelius"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Rodyti procesus"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Rodyti versijas"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show logo in left frame"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Logotipą rodyti kairiame rėmelyje"
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
"Didžiausias skaičius paskiausiai naudotų lentelių; nustatyti 0, kad išjungti"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
"Didžiausias skaičius paskiausiai naudotų lentelių; nustatyti 0, kad išjungti"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Paskiausiai naudotos lentelės"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Kur parodyti lentelės eilučių nuorodas"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
msgstr ""
"Naudoti natūralią tvarką rikiuojant lentelių ir duomenų bazių pavadinimus"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Natūrali tvarka"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Naudoti tik piktogramas (ikonas), tik tekstą arba abu"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Iconic navigation bar"
msgid "Table navigation bar"
msgstr "Piktograminė navigacijos juostelė"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
"naudoti GZip išvedimo buferiui tam, kad padidinti greitį HTTP persiuntimų"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip išvedimo buferis"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7308,21 +7387,21 @@ msgstr ""
"[kbd]SMART[/kbd] - t.y. mažėjantis rikiavimas stulpeliams kurių tipai TIME, "
"DATE, DATETIME ir TIMESTAMP, didėjantis kitu atveju"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Numatytoji rikiavimo tvarka"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Naudoti ilgalaikius prisijungimus prie MySQL duomenų bazių"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Ilgalaikiai sujungimai"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7337,11 +7416,11 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7355,11 +7434,11 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7373,31 +7452,31 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
#, fuzzy
#| msgid "Allow to display all the rows"
msgid "How to display the menu tabs"
msgstr "Leisti rodyti visas eilutes (įrašus)"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
#, fuzzy
#| msgid "Disallow BLOB and BINARY columns from editing"
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Neleisti redaguoti BLOB ir BINARY stulpelių"
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Apsaugoti dvejetainius stulpelius"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7407,21 +7486,21 @@ msgstr ""
"(reikalinga phpMyAdmin nustatymų saugykla). Jeigu išjungta, naudoja "
"JavaScript užklausų istorijai rodyti (prarandama uždarius langą)."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Nuolatinė užklausų istorija"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Kiek užklausų laikoma istorijoje"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Užklausų istorijos ilgis"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
@@ -7429,31 +7508,31 @@ msgstr ""
"Pasirinkti kokios funkcijos bus naudojamos ženklų rinkinio (koduotės) "
"konvertavimui"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Įrašymo varikliukas"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr "Kai naršomos lentelės, atsimenamas kiekvienos lentelės rikiavimas"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Įsiminti lentelės rūšiavimą"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Numatytoji rikiavimo tvarka"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7461,112 +7540,112 @@ msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Pakartoti antraštes kas X langelių, [kbd]0[/kbd] išjungia šią galimybę"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Pakartoti antraštes"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Ryšių rodymo stulpelis"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Serverių rodymo nustatymai"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
msgstr "Per vieną kartą išsaugoti redaguotus laukelius"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Katalogas kur eksportai gali būti išsaugomi serveryje"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Išsaugoti katalogą"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "Palikite tuščią, jei nenaudojamas"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "Palikite tuščią nutylėtoms reikšmėms"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Leisti prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Leisti prisijungti kaip root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sesijos reikšmė"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication method to use."
msgstr "Atpažinimo nustatymai"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentifikacijos tipas"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7578,11 +7657,11 @@ msgstr ""
"Palikite tuščią jei nenorite, kad palaikytų [a@http://wiki.phpmyadmin.net/"
"pma/relation]sąryšines nuorodas[/a], pasiūlymas: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Pažymėti lentelę"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7594,36 +7673,36 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Stulpelio informacinė lentelė"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Naudoti suspaudimą jungiantis prie MySQL serverio"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Naudoti suspaustą susijungimą"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
#, fuzzy
#| msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
"Kaip prisijungti prie serverio, jei nesate tikras palikite [kbd]tcp[/kbd]"
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Susijungimo tipas"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Kontroliuoti naudotojų slaptažodį"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7636,42 +7715,42 @@ msgstr ""
"Specialus MySQL naudotojas sukonfigūruotas su ribotom galimybėm, daugiau "
"informacijos [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control user"
msgid "Control port"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Slėpti duomenų bazės, atitinkančias standartines išraiškas (PCRE)"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7679,15 +7758,15 @@ msgstr ""
"Daugiau informacijos [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA[/"
"a] ir [a@http://bugs.mysql.com/19588]MySQL[/a] klaidų puslapiuose"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Neleisti matyti INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Slėpti duomenų bazes"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7699,41 +7778,41 @@ msgstr ""
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL užklausų žurnalo lentelė"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "Kompiuterio, kuriame veikia MySQL serveris, pavadinimas"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Serverio adresas"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Atsijungimo nuoroda"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Didžiausias skaičius išsaugomų lentelės nustatymų"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7744,13 +7823,13 @@ msgstr ""
"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
msgstr "Textarea stulpeliai"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7762,17 +7841,17 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Bandyti prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
#, fuzzy
#| msgid ""
#| "You can use MySQL wildcard characters (% and _), escape them if you want "
@@ -7792,21 +7871,21 @@ msgstr ""
"ir pabaigoje nurodykite [kbd]*[/kbd], kad parodytumėte likusias abėcėlės "
"tvarka."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Rodyti tik šias duomenų bazes"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "Palikite tuščią, jei nenaudojate autentifikacijos pagal nustatymus"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7816,11 +7895,11 @@ msgstr ""
"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF schema: puslapių lentelė"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7835,12 +7914,12 @@ msgstr ""
"informaciją rasite [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. "
"Palikite tušią, kad nepalaikytų. Pasiūlymas: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Duomenų bazės vardas"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
@@ -7848,11 +7927,11 @@ msgstr ""
"Jungtis per kurią MySQL serveris laukia atsakymo, palikite tuščią numatytam "
"nustatymui"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Serverio jungtis"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7863,11 +7942,11 @@ msgstr ""
"Palikite tuščią jeigu nenorite „įkyrių“ neseniai naudotų lentelių tarp "
"seansų, siūlome: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Paskiausiai naudota lentelė"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -7878,13 +7957,13 @@ msgstr ""
"Palikite tuščią jeigu nenorite „įkyrių“ neseniai naudotų lentelių tarp "
"seansų, siūlome: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Kintamieji"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7896,11 +7975,11 @@ msgstr ""
"Palikite tuščią jei nenorite, kad palaikytų [a@http://wiki.phpmyadmin.net/"
"pma/relation]sąryšines nuorodas[/a], pasiūlymas: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Sąryšių lentelė"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7912,35 +7991,35 @@ msgstr ""
"Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]autentifikacijos tipus[/a] dėl pavyzdžių"
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Prisijungimo sesijos vardas"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Prisijungimo adresas"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "Prievadas, kurio klausosi MySQL serveris, palikite tuščią įprastiniam"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Serverio prievadas (socket)"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Įjungti SSL susijungimams prie MySQL serverio"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Naudoti SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7952,13 +8031,13 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF schema: lentelės koordinatės"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7970,11 +8049,11 @@ msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Rodyti lentelės stulpelius"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
@@ -7984,49 +8063,49 @@ msgstr ""
"Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: "
"[kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Naudotojo sąsajos nustatymų lentelė"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Pridėti DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Pridėti DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Pridėti DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Sekamos užklausos"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -8038,21 +8117,21 @@ msgstr ""
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL užklausų sekimo lentelė"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Automatiškai sukurti versijas"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -8063,37 +8142,37 @@ msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Naudoti lenteles"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Naudoti Host lentelę"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -8104,120 +8183,120 @@ msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Leisti rodyti visas eilutes (įrašus)"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Rodyti slaptažodžio keitimo formą"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Rodyti duomenų bazės sukūrimo formą"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Lentelės komentarai"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Rodyti daugiau veiksmų"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Rodyti pagrindinio serverio būklę"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Rodyti laukelių tipus"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Rodyti funkcijų laukelius redagavimo/įterpimo režime"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Rodyti funkcijų laukelius"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "Where to show the table row links"
msgid "Whether to show hint or not."
msgstr "Kur parodyti lentelės eilučių nuorodas"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show indexes"
msgid "Show hint"
msgstr "Rodyti indeksus"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -8229,15 +8308,15 @@ msgstr ""
"Rodyti nuorodą į [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"išvedimą"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Rodyti phpinfo() nuorodą"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Rodyti išsamią MySQL serverio informaciją"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -8246,22 +8325,22 @@ msgid ""
msgstr ""
"Nustato kada turi būti rodomos SQL užklausos kurias sugeneravo phpMyAdmin"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Rodyti SQL užklausas"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Slėpti užklausos laukelį"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
@@ -8269,20 +8348,20 @@ msgstr ""
"Leisti rodyti duomenų bazių ir lentelių statistiką (pavyzdžiui vietos "
"naudojimą)"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Rodyti statistika"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Praleisti užrakintas lenteles"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8290,11 +8369,11 @@ msgid ""
"detected."
msgstr "Įspėjimas rodomas pagrindiniame puslapyje jeigu Suhosin yra aptinkamas"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr "Suhosin įspėjimas"
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8309,61 +8388,61 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatymų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Prisijungimo slapuko galiojimas"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr "Textarea stulpeliai"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr "Textarea eilutės"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Title of browser window when a database is selected"
msgid "Title of browser window when a database is selected."
msgstr "Naršyklės lango pavadinimas kai duomenų bazė yra pasirinkta"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid "Title of browser window when nothing is selected"
msgid "Title of browser window when nothing is selected."
msgstr "Naršyklės lango pavadinimas kai niekas nepasirinkta"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Numatytasis pavadinimas"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "Naršyklės lango pavadinimas kai serveris yra pasirinktas"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
#, fuzzy
#| msgid "Title of browser window when a table is selected"
msgid "Title of browser window when a table is selected."
msgstr "Naršyklės lango pavadinimas, kai pasirinkta lentelė"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8371,31 +8450,31 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Sąrašas patikimų proxy serverių IP leidimui/atmetimui"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr "Serverio katalogas į kurį Jūs galite įkelti failus importavimui"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Įkelties katalogas"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "Leisti paiešką visos duomenų bazės viduje"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Naudoti duomenų bazės paiešką"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
#, fuzzy
#| msgid ""
#| "When disabled, users cannot set any of the options below, regardless of "
@@ -8407,29 +8486,29 @@ msgstr ""
"Kai išjungta, naudotojai negali nustatyti jokių žemiau esančių nustatymų, "
"nepriklausomo nuo to, kad pažymėjimo laukelis yra dešinėje"
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Patikrinti ar naujausia versija"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
#, fuzzy
#| msgid "Enables check for latest version on main phpMyAdmin page"
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
"Įjungia naujausios versijos patikrinimą pagrindiniame phpMyAdmin puslapyje"
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Versijos patikrinimas"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8437,34 +8516,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Vartotojo vardas"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Slaptažodis"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8476,55 +8555,55 @@ msgstr ""
"Įjungia [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] glaudinimą "
"importo ir eksporto operacijoms"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Serverio jungtis"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Executed queries"
msgid "Enter executes queries in console"
msgstr "Įvykdytos užklausos"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8552,46 +8631,46 @@ msgstr "HTTP autentifikacija"
msgid "Signon authentication"
msgstr "Prisijungimo tapatybės nustatymas"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV naudojant LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document skaičiuoklė"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Greitas"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Pritaikytas"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Duomenų bazės eksportavimo nustatymai"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV formatas MS Excel programai"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8622,7 +8701,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8695,7 +8774,7 @@ msgstr "Sukurti lentelę"
msgid "Number of columns"
msgstr "Stulpelių skaičius"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Nepavyko įkelti eksportuojamų plėtinių, prašome patikrinti įdiegtį!"
@@ -8738,62 +8817,62 @@ msgstr "Lentelė(s):"
msgid "Format:"
msgstr "Formatas:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Formato specifiniai nustatymai:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Koduotės konvertavimas:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Eilutės:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Parodyti keletą eilučių(tes)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Eilutės prasideda nuo:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Išvesti visas eilutes"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Išvestis:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Išsaugoti serverio kataloge pavadinimu %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Failo pavadinimo šablonas:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ taps serverio pavadinimu"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ taps duomenų bazės pavadinimu"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ taps lentelės pavadinimu"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8804,74 +8883,86 @@ msgstr ""
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
"tekstas bus paliktas kaip yra. Žiūrėti %4$sDUK%5$s smulkesnei informacijai."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr "naudoti šitai ateities eksportams"
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Simbolių koduotė faile:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Glaudinti:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Rodyti išvedimą kaip tekstą"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Exporting rows from \"%s\" table"
+msgid "Export databases as separate files"
+msgstr "Eksportuojamos eilutės iš „%s“ lentelės"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "horizontalūs (pasukti pavadinimai)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Išsaugoti į failą"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Pasirinkite lenteles"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Pasirinkite lenteles"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database name"
msgid "New database name"
msgstr "Duomenų bazės vardas"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New page name: "
msgid "New table name"
msgstr "Naujas puslapio vardas: "
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Stulpelių vardai"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9475,7 +9566,7 @@ msgid "Create an index on %s columns"
msgstr "Sukurti indeksą %s stulpeliams"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Paslėpti"
@@ -9618,11 +9709,6 @@ msgstr "Iš"
msgid "To"
msgstr "Kam"
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Siųsti"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add table prefix"
@@ -9842,29 +9928,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names: "
+msgid "Groups:"
+msgstr "Stulpelių vardai: "
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Įvykiai"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Funkcijos"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Procedūros"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Lentelės"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "Views"
msgid "Views:"
@@ -9894,13 +9986,13 @@ msgstr "Navigacijos rėmelis"
msgid "Reload navigation panel"
msgstr "Atsiųsti iš naujo navigacijos rėmelį"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9908,26 +10000,26 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Pakeisti lentelės rikiavimą pagal:"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Išsaugoti į failą"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Pakeisti lentelės rikiavimą pagal:"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9963,7 +10055,7 @@ msgstr ""
msgid "Database operations"
msgstr "Duomenų bazės eksportavimo nustatymai"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show indexes"
msgid "Show hidden items"
@@ -11226,13 +11318,13 @@ msgstr "Stulpelių vardai: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Negalimas parametras CSV importavimui: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
@@ -11241,13 +11333,13 @@ msgstr ""
"Blogai nurodyti stulpeliai (%s)! Įsitikinkite, kad stulpelių vardai parašyti "
"gerai, atskirti kableliais ir apskliausti (apimti, aptverti) kabutėmis."
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Neteisingas CSV įvedimo formatas eilutėje %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d."
@@ -11669,63 +11761,63 @@ msgstr "Suformuoja tekstą kaip SQL užklausą su sintaksės paryškinimais."
msgid "Formats text as XML with syntax highlighting."
msgstr "Suformuoja tekstą kaip SQL užklausą su sintaksės paryškinimais."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Klaida: toks sąryšis jau yra."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY sąryšis įdėtas"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Klaida: Sąryšis neįdėtas."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "Klaida: Sąryšis neįdėtas."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Vidinis sąryšis įdėtas"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Klaida: Sąryšis neįdėtas."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "FOREIGN KEY sąryšis įdėtas"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Klaida: Sąryšis neįdėtas."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Klaida: Sąryšis neįdėtas."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11831,11 +11923,17 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Įsiminti lentelės rūšiavimą"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Greiti žingsneliai nustatyti išplėstines galimybes:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
#| msgid ""
#| "Create the needed tables with the examples/create_tables.sql."
@@ -11843,11 +11941,11 @@ msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Sukurti reikalaujamas lenteles su examples/create_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Sukurti pma naudotoją ir suteikti prieigą prie šių lentelių."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11855,24 +11953,24 @@ msgstr ""
"Įjungti išplėstines funkcijas konfigūraciniame faile (config.inc.php"
"code>), pavyzdžiui, pradėti galite nuo config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Iš naujo prisijunkite prie phpMyAdmin tam, kad užkrautumėte atnaujintą "
"konfigūracijos failą."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "Aprašymo nėra"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11880,14 +11978,14 @@ msgid ""
"configuration storage there."
msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12692,7 +12790,7 @@ msgstr "Nėra įvykių rodymui."
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current Server"
msgid "Current Server:"
@@ -17475,9 +17573,6 @@ msgstr "MyISAM concurrent įterpimai"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Ištrinti šios lentelės sekimo duomenis"
-#~ msgid "Show versions"
-#~ msgstr "Rodyti versijas"
-
#, fuzzy
#~| msgid "Database for user"
#~ msgid "Table Structure"
@@ -18593,9 +18688,6 @@ msgstr "MyISAM concurrent įterpimai"
#~ msgid "Reset"
#~ msgstr "Atstatyti į pradinę būseną"
-#~ msgid "Show processes"
-#~ msgstr "Rodyti procesus"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Atstatyti į pradinę būseną"
diff --git a/po/lv.po b/po/lv.po
index 29607f5479..d6580aca93 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-04-04 18:47+0200\n"
"Last-Translator: Latvian TV
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Rādīt visu"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Oriģinālā pozīcija"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Atcelt"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Pārtraukts"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Importēt failus"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Izvēlieties tabulas"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Nav datubāzu"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Kolonnu nosaukumi"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Mainīt paroli"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
#, fuzzy
msgid "Generate"
msgstr "Uzģenerēja"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Mainīt paroli"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "P"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Rādīt visu"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "Pievienot jaunu lauku"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Rādīt režģi"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
msgid "Link with main panel"
msgstr "Datubāzu eksporta opcijas"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
msgid "Unlink from main panel"
msgstr "Datubāzu eksporta opcijas"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Tabulas"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
msgid "views"
msgstr "Lauki"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
msgid "procedures"
msgstr "Procesi"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
msgid "events"
msgstr "Nosūtīts"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "Funkcija"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2555,136 +2598,136 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Nav datubāzu"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Servera versija"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "Servera ID"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "Change settings"
msgid "Change Report Settings"
msgstr "Mainīt uzstādījumus"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "Rādīt tabulas"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Ignorēt"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Rādīt šo vaicājumu šeit atkal"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to delete user group \"%s\"?"
msgid "Do you really want to delete this bookmark?"
msgstr "Vai Jūs tiešām vēlaties dzēst lietotāju grupu \"%s\"?"
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL vaicājums"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Komentārs tabulai"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Slēpt meklēšanas rezultātus"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Iepriekšējie"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2692,96 +2735,96 @@ msgid "Next"
msgstr "Nākamie"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kopā"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binārais"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mai"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jūn"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jūl"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2789,78 +2832,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sv"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "P"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "O"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pk"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2868,223 +2911,223 @@ msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "S"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sv"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "O"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "C"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pk"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "S"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Nav"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lietošanā"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "sekundē"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Lietot teksta lauku"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid email address"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid URL"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid date"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid date ( ISO )"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid number"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid credit card number"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "Please enter a valid length"
msgid "Please enter only digits"
msgstr "Lūdzu ievadiet derīgu garumu"
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter the same value again"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter at least {0} characters"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a value between {0} and {1}"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length"
msgid "Please enter a value less than or equal to {0}"
msgstr "Lūdzu ievadiet derīgu garumu"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid date or time"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number"
msgid "Please enter a valid HEX input"
msgstr "Lūdzu ievadiet derīgu numuru"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3155,16 +3198,16 @@ msgstr "stundā"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -3185,7 +3228,7 @@ msgid "Requery"
msgstr "vaicājumā"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3404,7 +3447,7 @@ msgid "Count:"
msgstr "Lauks"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3616,27 +3659,27 @@ msgstr "Rāda grāmatzīmi"
msgid "Delete bookmark"
msgstr "Meklēt"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatbild"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3717,6 +3760,16 @@ msgstr "Vārdi ir atdalīti ar tukšumu (\" \")."
msgid "Inside tables:"
msgstr "Tabulā(s):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Iezīmēt visu"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Neiezīmēt neko"
+
#: libraries/DbSearch.class.php:455
#, fuzzy
#| msgid "Inside table(s):"
@@ -3786,7 +3839,7 @@ msgid "All"
msgstr "Visi"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
@@ -4110,7 +4163,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Serveris"
@@ -4121,34 +4174,13 @@ msgstr "Serveris"
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktūra"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4245,8 +4277,8 @@ msgstr "Pievienot/Dzēst laukus (kolonnas)"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Datubāzes"
@@ -4369,7 +4401,7 @@ msgid "Recent"
msgstr "Atcelt"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4448,16 +4480,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabulas"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4980,7 +5002,7 @@ msgstr "Maksimālais izmērs: %s%s"
msgid "MySQL said: "
msgstr "MySQL teica: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Izskaidrot SQL"
@@ -4997,7 +5019,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Izveidot PHP kodu"
@@ -5117,17 +5139,6 @@ msgstr "Lietot šo vērtību"
msgid "Rows"
msgstr "Rindas"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Dati"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5306,7 +5317,7 @@ msgstr "Serveris"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5314,24 +5325,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Jums ir jāuzliek %s %s vai jaunāks."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5577,7 +5588,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5988,7 +5999,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -5998,7 +6009,7 @@ msgstr "Parametrs"
msgid "Save as file"
msgstr "Saglabāt kā failu"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Tabulas kodējums:"
@@ -6028,17 +6039,17 @@ msgstr "Kompresija"
msgid "Put columns names in the first row"
msgstr "Likt kolonnu nosaukumus pirmajā rindā"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Lauki iekļauti iekš"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6058,16 +6069,16 @@ msgstr "Aizvietot NULL ar"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Rindas atdalītas ar"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6148,7 +6159,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Pārrakstīt eksistējošos failus"
@@ -6168,8 +6179,8 @@ msgstr "Pievienot AUTO_INCREMENT vērtību"
msgid "Enclose table and column names with backquotes"
msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6288,16 +6299,16 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
msgid "Customize default options."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV dati"
@@ -6327,7 +6338,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6377,176 +6388,186 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+msgid "Navigation tree"
+msgstr "Datubāzu eksporta opcijas"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+msgid "Customize the navigation tree."
+msgstr "Datubāzu eksporta opcijas"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
#, fuzzy
msgid "Servers"
msgstr "Serveris"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Add new field"
msgid "Main panel"
msgstr "Pievienot jaunu lauku"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Lapas numurs:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Dokumentācija"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "Dokumentācija"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "MySQL konekcijas kārtošana"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid "Customize export options"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
msgid "Customize navigation panel"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
msgid "Customize main panel"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "Statuss"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
msgid "Customize startup page."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "Datubāzes"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6554,200 +6575,200 @@ msgstr ""
msgid "Table structure"
msgstr "Datubāzes"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Tabula"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Relāciju shēma"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Papīra izmērs"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Lietot teksta lauku"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
msgid "Customize text input fields."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
msgid "Customize default options"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Likt kolonnu nosaukumus pirmajā rindā"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Pievienot AUTO_INCREMENT vērtību"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6755,1133 +6776,1187 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
msgid "Maximum items on first level"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
#, fuzzy
msgid "Memory limit"
msgstr "Resursu ierobežojumi"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Rādīt režģi"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Show logo in navigation panel."
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Tabulas virsraksts"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Rādīt tabulas"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Rādīt režģi"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Rādīt režģi"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Rādīt režģi"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Parādīt procesus"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Rādīt režģi"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Rādīt režģi"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analizēt tabulu"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Mainīt datu kārtošanas laukus"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Tabulas virsraksts"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Pārsaukt tabulu uz"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Primārā atslēga pievienota uz lauka %s."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Relāciju shēma"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Sesijas vērtība"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentācija"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Nevar pieslēgties MySQL serverim"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "Konekcijas"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Jebkurš hosts"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Jebkurš hosts"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Nav datubāzu"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "Servera izvēle"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Nemainīt paroli"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Datubāze"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "Servera ID"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizēt tabulu"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Mainīgie"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Restaurēt tabulu"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Servera izvēle"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr ""
"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Rādu kolonnu komentārus"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmentēt tabulu"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Parametrs"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
msgid "Automatically create versions"
msgstr "Servera versija"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Lietot tabulas"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Lietot hostu tabulu"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komentārs tabulai"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Parādīt PHP informāciju"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
msgid "Show field types"
msgstr "Rādīt tabulas"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Rādīt režģi"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "Rādīt pilnos vaicājumus"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Rindas statistika"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Noklusēts"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7889,52 +7964,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7942,85 +8017,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Lietotājvārds:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Parole"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "Servera ID"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8046,46 +8121,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentācija"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV dati MS Excel formātā"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8116,7 +8191,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8196,7 +8271,7 @@ msgstr "Izveidot jaunu lapu"
msgid "Number of columns"
msgstr "Rindu skaits vienā lapā"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8251,69 +8326,69 @@ msgstr "Tabulas"
msgid "Format:"
msgstr "Formats"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Transformācijas opcijas"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Rindas"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Saglabāt uz servera direktorijā %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Faila nosaukuma šablons"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8321,84 +8396,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Tabulas kodējums:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Kompresija"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "Arhivēts ar zip"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "Arhivēts ar gzip"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Saglabāt kā failu"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Izveidot jaunu tabulu datubāzē %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "horizontālā (pagriezti virsraksti)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Saglabāt kā failu"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Izvēlieties tabulas"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Izvēlieties tabulas"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database"
msgid "New database name"
msgstr "Datubāze"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Nav tabulu"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Kolonnu nosaukumi"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -8968,7 +9055,7 @@ msgid "Create an index on %s columns"
msgstr "Izveidot indeksu uz %s laukiem"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -9116,11 +9203,6 @@ msgstr "Pk"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Nosūtīt"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9342,26 +9424,32 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Kolonnu nosaukumi"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
msgid "Events:"
msgstr "Nosūtīts"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "Funkcija"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
msgid "Procedures:"
msgstr "Procesi"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Tabulas"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -9387,13 +9475,13 @@ msgstr "Datubāzu eksporta opcijas"
msgid "Reload navigation panel"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
@@ -9401,26 +9489,26 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Mainīt datu kārtošanas laukus"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Saglabāt kā failu"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Mainīt datu kārtošanas laukus"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9458,7 +9546,7 @@ msgstr ""
msgid "Database operations"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10734,26 +10822,26 @@ msgstr "Kolonnu nosaukumi"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11156,60 +11244,60 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Labojumi tika saglabāti"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Nevar nolasīt failu"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
msgid "Internal relation has been added."
msgstr "Iekšējās relācijas"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Nevar nolasīt failu"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Labojumi tika saglabāti"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Nevar nolasīt failu"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Nevar nolasīt failu"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
msgid "Internal relation has been removed."
msgstr "Iekšējās relācijas"
@@ -11309,54 +11397,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Pārsaukt tabulu uz"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "Bez apraksta"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12154,7 +12248,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17490,9 +17584,6 @@ msgstr ""
#~ msgid "Reset"
#~ msgstr "Atcelt"
-#~ msgid "Show processes"
-#~ msgstr "Parādīt procesus"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Atcelt"
diff --git a/po/mk.po b/po/mk.po
index c44d1e1377..63ed0a3fbc 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-11-05 10:33+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "прикажи ги сите"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Оргинална позиција"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Прекинато"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Увоз на податотека"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Избери табели"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Базата на податоци не постои"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Имиња на колони"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Генерирање на лозинка"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Генерирај"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промена на лозинка"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "прикажи ги сите"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "Додади ново поле"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Прикажи мрежа"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
msgid "Link with main panel"
msgstr "Опции за извоз на бази на податоци"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
msgid "Unlink from main panel"
msgstr "Опции за извоз на бази на податоци"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Табели"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Поглед"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
msgid "procedures"
msgstr "Листа на процеси"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
msgid "events"
msgstr "Пратено"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "Функција"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Изабраниот корисник не е пронајден во табелата на привилегии."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2673,135 +2716,135 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Базата на податоци не постои"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Верзија на серверот"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "ID на серверот"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Општи особини на релациите"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "Прикажи табели"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Игнорирај"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Прикажи го повторно овој упит"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Дали навистина сакате да "
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
msgid "%s queries executed %s times in %s seconds."
msgstr "SQL упит"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Коментар на табелата"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "SQL упит"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Претходна"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2809,96 +2852,96 @@ msgid "Next"
msgstr "Следен"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Вкупно"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарен"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "мај"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2906,78 +2949,78 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "дек"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вто"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2985,199 +3028,199 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Саб"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вто"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Саб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "нема"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "во секунда"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Користи текст поле"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please select a database"
msgid "Please enter a valid date"
msgstr "Изберете база на податоци"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please choose a page to edit"
msgid "Please enter a valid date or time"
msgstr "Изберете страница која менувате"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3248,16 +3291,16 @@ msgstr "на час"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -3278,7 +3321,7 @@ msgid "Requery"
msgstr "во упитот"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3492,7 +3535,7 @@ msgid "Count:"
msgstr "Имиња на колони"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3704,7 +3747,7 @@ msgstr "Пребарување"
msgid "Delete bookmark"
msgstr "Пребарување"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3712,21 +3755,21 @@ msgid ""
"configured)."
msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Серверот не одговара"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3807,6 +3850,16 @@ msgstr "Зборовите се одвојуваат со празно мест
msgid "Inside tables:"
msgstr "во табела(и):"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "избери се"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "ништо"
+
#: libraries/DbSearch.class.php:455
#, fuzzy
#| msgid "Inside table(s):"
@@ -3876,7 +3929,7 @@ msgid "All"
msgstr "Се"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
@@ -4205,7 +4258,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Сервер"
@@ -4216,34 +4269,13 @@ msgstr "Сервер"
msgid "View"
msgstr "Поглед"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Структура"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4340,8 +4372,8 @@ msgstr "Додади/избриши колона"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "База на податоци"
@@ -4464,7 +4496,7 @@ msgid "Recent"
msgstr "Поништи"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4543,16 +4575,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Табели"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -5075,7 +5097,7 @@ msgstr "Максимална големина: %s%s"
msgid "MySQL said: "
msgstr "MySQL порака: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Објасни SQL"
@@ -5092,7 +5114,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "без PHP код"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Направи PHP код"
@@ -5212,17 +5234,6 @@ msgstr "Користи ја оваа вредност"
msgid "Rows"
msgstr "Записи"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Податоци"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5401,7 +5412,7 @@ msgstr "Сервер"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5409,25 +5420,25 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
"Би требало да го надоградите вашиот %s сервер на верзија %s или понова."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5671,7 +5682,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6083,7 +6094,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6093,7 +6104,7 @@ msgstr "Име"
msgid "Save as file"
msgstr "Сочувај како податотека"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Кодна страна на податотеката:"
@@ -6123,17 +6134,17 @@ msgstr "Компресија"
msgid "Put columns names in the first row"
msgstr "Стави ги имињата на полињата во првата редица"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Полињата се раздвоени со"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6153,16 +6164,16 @@ msgstr "Замени NULL со"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Линиите се завршуваат со"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6243,7 +6254,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Препиши ги постоечките податотеки"
@@ -6263,8 +6274,8 @@ msgstr "Додади AUTO_INCREMENT вредност"
msgid "Enclose table and column names with backquotes"
msgstr "Името на полето стави го во '"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6385,16 +6396,16 @@ msgid "Customize browse mode."
msgstr "Режим на автоматско опоравување"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
msgid "Customize default options."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV формат"
@@ -6424,7 +6435,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6475,178 +6486,188 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+msgid "Navigation tree"
+msgstr "Опции за извоз на бази на податоци"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+msgid "Customize the navigation tree."
+msgstr "Опции за извоз на бази на податоци"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
#, fuzzy
msgid "Servers"
msgstr "Сервер"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Add new field"
msgid "Main panel"
msgstr "Додади ново поле"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
#, fuzzy
#| msgid "Microsoft Excel 2000"
msgid "Microsoft Office"
msgstr "Microsoft Excel 2000"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Број на страници:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Документација"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "Документација"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "Колација за MySQL врска"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid "Customize export options"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
msgid "Customize navigation panel"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
msgid "Customize main panel"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "Статус"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
msgid "Customize startup page."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "База на податоци"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6654,200 +6675,200 @@ msgstr ""
msgid "Table structure"
msgstr "База на податоци"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Табела"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Релациона шема"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Димензија на хартијата"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Користи текст поле"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
msgid "Customize text input fields."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
msgid "Customize default options"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Стави ги имињата на полињата во првата редица"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Додади AUTO_INCREMENT вредност"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6855,1139 +6876,1193 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum items on first level"
msgstr "Максимална големина на привремените податотеки за подредување"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
#, fuzzy
msgid "Memory limit"
msgstr "Ограничување на ресурси"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Прикажи мрежа"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
msgid "Show logo in navigation panel."
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Коментар на табела"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Прикажи табели"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Прикажи мрежа"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Прикажи мрежа"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Прикажи мрежа"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Прикажи листа на процеси"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Прикажи мрежа"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Прикажи мрежа"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Анализа на табелата"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Промени го редоследот во табелата"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Коментар на табела"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Промени го името на табелата во "
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Примарниот клуч %s е додаден."
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Нишки на поправка"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Релациона шема"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
#, fuzzy
msgid "Save directory"
msgstr "Основен директориум на податоците"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Вредност на сесијата"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Документација"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Не можам да се пријавам на MySQL серверот"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "Конекции"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Било кој host"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Било кој host"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Базата на податоци не постои"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "Избор на сервер"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Додади/избриши колона"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Немој да ја менуваш лозинката"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "База на податоци"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "ID на серверот"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Анализа на табелата"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Променливи"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Поправка на табелата"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Избор на сервер"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr ""
"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
"еден час."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Прикажувам коментари на колоните"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дефрагментирај ја табелата"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Име"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Режим на автоматско опоравување"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Користи табели"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Користи ја табелата на host-от"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Коментар на табелата"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Прикажи информации за PHP"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
msgid "Show field types"
msgstr "Прикажи табели"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Прикажи мрежа"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
#, fuzzy
msgid "Show SQL queries"
msgstr "Прикажи комплетни упити"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Статистики за записите"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Додади/избриши колона"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Default"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7995,52 +8070,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8048,85 +8123,85 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Корисничко име:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Лозинка"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "ID на серверот"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
msgid "Enter executes queries in console"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8152,46 +8227,46 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Документација"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8222,7 +8297,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -8300,7 +8375,7 @@ msgstr "Направи нова страница"
msgid "Number of columns"
msgstr "Број на записи на страница"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8355,69 +8430,69 @@ msgstr "Табели"
msgid "Format:"
msgstr "Формат"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Опции на трансформацијата"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Записи"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Сочувај на серверот во директориумот %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Шаблон на име на податотека"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8425,84 +8500,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Кодна страна на податотеката:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Компресија"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zip\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"gzip\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Сочувај како податотека"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Креирај нова табела во базата на податоци %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "хоризонтален (ротирани заглавија)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Сочувај како податотека"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Избери табели"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Избери табели"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database"
msgid "New database name"
msgstr "База на податоци"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Нема табела"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Имиња на колони"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9092,7 +9179,7 @@ msgid "Create an index on %s columns"
msgstr "Направи клуч на %s колони"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -9242,11 +9329,6 @@ msgstr "Пет"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Испрати"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9468,26 +9550,32 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Имиња на колони"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
msgid "Events:"
msgstr "Пратено"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "Функција"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
msgid "Procedures:"
msgstr "Листа на процеси"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Табели"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9515,39 +9603,39 @@ msgstr "Опции за извоз на бази на податоци"
msgid "Reload navigation panel"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Промени го редоследот во табелата"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Сочувај како податотека"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Промени го редоследот во табелата"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9585,7 +9673,7 @@ msgstr ""
msgid "Database operations"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10867,26 +10955,26 @@ msgstr "Имиња на колони"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11306,60 +11394,60 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Измените се сочувани"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Податотеката не е можно да се прочита"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
msgid "Internal relation has been added."
msgstr "Внатрешни релации"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Податотеката не е можно да се прочита"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Измените се сочувани"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Податотеката не е можно да се прочита"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Податотеката не е можно да се прочита"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
msgid "Internal relation has been removed."
msgstr "Внатрешни релации"
@@ -11460,54 +11548,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Промени го името на табелата во "
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "нема опис"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12308,7 +12402,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17707,9 +17801,6 @@ msgstr ""
#~ msgid "Reset"
#~ msgstr "Поништи"
-#~ msgid "Show processes"
-#~ msgstr "Прикажи листа на процеси"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Поништи"
diff --git a/po/ml.po b/po/ml.po
index f92ac747d8..b2cb1030b9 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-02-27 10:56+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "എല്ലാം കാണിക്കൂ"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select All"
msgid "Select database first"
msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "എല്ലാം കാണിക്കൂ"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show all"
msgid "Show hidden navigation tree items."
msgstr "എല്ലാം കാണിക്കൂ"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Table"
msgid "tables"
msgstr "പട്ടിക"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr ""
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2387,441 +2430,441 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr ""
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr ""
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr ""
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr ""
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr ""
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr ""
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr ""
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr ""
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr ""
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr ""
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr ""
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr ""
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr ""
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Select All"
msgid "Please enter a valid date"
msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2892,16 +2935,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2920,7 +2963,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3112,7 +3155,7 @@ msgid "Count:"
msgstr "നിര"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3305,25 +3348,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3397,6 +3440,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "ഒന്നും തിരഞ്ഞെടുക്കാതിരിക്കുക"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3454,7 +3507,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3754,7 +3807,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3765,34 +3818,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -3889,8 +3921,8 @@ msgstr "നിരകൾ ചേർക്കുക/മായക്കുക"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -3993,7 +4025,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Show all"
msgid "Favorite tables"
@@ -4066,16 +4098,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4581,7 +4603,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4598,7 +4620,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4713,17 +4735,6 @@ msgstr "ഈ വില ഉപയോഗിക്കൂ"
msgid "Rows"
msgstr "വരികൾ"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4885,7 +4896,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4893,24 +4904,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5140,7 +5151,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5539,7 +5550,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5548,7 +5559,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5575,15 +5586,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5599,14 +5610,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5676,7 +5687,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5693,8 +5704,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5807,15 +5818,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5843,7 +5854,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5890,157 +5901,169 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Table comments"
+msgid "Navigation tree"
+msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Show all"
+msgid "Customize the navigation tree."
+msgstr "എല്ലാം കാണിക്കൂ"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Table comments"
msgid "Tables display options."
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database comment"
msgid "Database structure"
msgstr "വിവരശേഖര അഭിപ്രായം: "
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6048,189 +6071,189 @@ msgstr ""
msgid "Table structure"
msgstr "വിവരശേഖര അഭിപ്രായം: "
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6238,1078 +6261,1130 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show all"
msgid "Show databases navigation as tree"
msgstr "എല്ലാം കാണിക്കൂ"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Table comments"
msgid "Show logo in navigation panel."
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table comments"
msgid "Enable navigation tree expansion"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show all"
+msgid "Show tables in tree"
+msgstr "എല്ലാം കാണിക്കൂ"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
-msgstr ""
+#, fuzzy
+#| msgid "Show all"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "എല്ലാം കാണിക്കൂ"
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
-msgstr ""
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show all"
+msgid "Show views in tree"
+msgstr "എല്ലാം കാണിക്കൂ"
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
-msgstr ""
+#, fuzzy
+#| msgid "Show all"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "എല്ലാം കാണിക്കൂ"
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
#, fuzzy
+#| msgid "Show all"
+msgid "Show events in tree"
+msgstr "എല്ലാം കാണിക്കൂ"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show all"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "എല്ലാം കാണിക്കൂ"
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+#, fuzzy
#| msgid "Table comments"
msgid "Table navigation bar"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Table comments"
msgid "For display Options"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Central columns table"
msgstr "നിരകൾ ചേർക്കുക/മായക്കുക"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Show all"
msgid "Favorites table"
msgstr "എല്ലാം കാണിക്കൂ"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "പട്ടികകൾ ഉപയോഗിക്കുക"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7317,52 +7392,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7370,80 +7445,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7467,44 +7542,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7533,7 +7608,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7600,7 +7675,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7643,62 +7718,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7706,70 +7781,78 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select All"
msgid "Select database"
msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select All"
msgid "Select table"
msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "The database name is empty!"
msgid "New database name"
msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8324,7 +8407,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8458,11 +8541,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8675,24 +8753,28 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
+msgid "Procedures:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Table"
msgid "Tables:"
msgstr "പട്ടിക"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8720,37 +8802,37 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
msgid "Reload navigation panel"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "The database name is empty!"
msgid "Filter databases by name or regex"
msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "The database name is empty!"
msgid "Filter by name or regex"
msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8786,7 +8868,7 @@ msgstr ""
msgid "Database operations"
msgstr "വിവരശേഖര അഭിപ്രായം: "
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show all"
msgid "Show hidden items"
@@ -9959,26 +10041,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10316,55 +10398,55 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "Internal relation has been added."
msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു."
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "Error: Internal relation could not be added!"
msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "FOREIGN KEY relation has been removed."
msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു."
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "Error: Internal relation could not be removed!"
msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Database %1$s has been created."
msgid "Internal relation has been removed."
@@ -10453,54 +10535,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11217,7 +11303,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 35b4dd99ce..6e30814dd7 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-11-05 10:28+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Бүгдийг харах"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Original position"
msgid "Original length"
msgstr "Жинхэнэ байрлал"
-#: js/messages.php:491
+#: js/messages.php:492
#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "Болих"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Таслагдсан"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
#| msgid "Import files"
msgid "Import status"
msgstr "Файл оруулах"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Хүснэгтүүд сонго"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
#| msgid "No tables"
msgid "Go to link:"
msgstr "Хүснэгт алга"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Баганын нэрс"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Нууц үг бий болгох"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Бий болгох"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Нууц үг солих"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Да"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Бүгдийг харах"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Add new field"
msgid "Hide Panel"
msgstr "Шинэ талбар нэмэх"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Тор харуулах"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Use text field"
msgid "Link with main panel"
msgstr "Бичвэр талбар хэрэглэх"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Use text field"
msgid "Unlink from main panel"
msgstr "Бичвэр талбар хэрэглэх"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Хүснэгт"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
#| msgid "View"
msgid "views"
msgstr "Харц"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "Процедурүүд"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
#| msgid "Event"
msgid "events"
msgstr "Үзэгдэл"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "Функцүүд"
-#: js/messages.php:537
+#: js/messages.php:538
#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2703,139 +2746,139 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "ӨС байхгүй"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Үүсгэх"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Ерөнхий хамаатай онцлог"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
#| msgid "Show open tables"
msgid "Show Report Details"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Үл тоох"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Уг асуултыг энд дахин харуулах"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Та үнэхээр "
-#: js/messages.php:591
+#: js/messages.php:592
msgid "Some error occurred while getting SQL debug info."
msgstr ""
-#: js/messages.php:592
+#: js/messages.php:593
#, fuzzy, php-format
#| msgid "Execute bookmarked query"
msgid "%s queries executed %s times in %s seconds."
msgstr "Тэмдэглэгдсэн асуулт ажиллуулах"
-#: js/messages.php:593
+#: js/messages.php:594
#, php-format
msgid "%s argument(s) passed"
msgstr ""
-#: js/messages.php:594
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Хүснэгтийн тайлбар"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "in query"
msgid "Hide arguments"
msgstr "асуултад"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Өмнөх"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2843,96 +2886,96 @@ msgid "Next"
msgstr "Цааш"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Нийт"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Хоёртын "
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "3-р"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "4-р"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "5-р"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "6-р"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "7-р"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "8-р"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "10р"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2940,78 +2983,78 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "12р"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ня"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Да"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Мя"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ба"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -3019,223 +3062,223 @@ msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Бя"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ня"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Да"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Мя"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Лх"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пү"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ба"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Бя"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Байхгүй"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "хэрэглэгдэж байна"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "per second"
msgid "Second"
msgstr "секундэд"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Use text field"
msgid "Please fix this field"
msgstr "Бичвэр талбар хэрэглэх"
-#: js/messages.php:768
+#: js/messages.php:769
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid email address"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:769
+#: js/messages.php:770
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid URL"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:771
+#: js/messages.php:772
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date ( ISO )"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:772
+#: js/messages.php:773
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid number"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:773
+#: js/messages.php:774
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid credit card number"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:774
+#: js/messages.php:775
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter only digits"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:775
+#: js/messages.php:776
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter the same value again"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter at least {0} characters"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value between {0} and {1}"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value less than or equal to {0}"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a value greater than or equal to {0}"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid date or time"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "%d is not valid row number."
msgid "Please enter a valid HEX input"
msgstr "%d нь мөрийн буруу дугаар байна."
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3307,16 +3350,16 @@ msgstr "цагт"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Үсгийн хэмжээ"
@@ -3337,7 +3380,7 @@ msgid "Requery"
msgstr "асуултад"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3553,7 +3596,7 @@ msgid "Count:"
msgstr "Баганын нэрс"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3768,7 +3811,7 @@ msgstr "Хавчуургыг харуулж байна"
msgid "Delete bookmark"
msgstr "Холбоог устгах"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -3776,21 +3819,21 @@ msgid ""
"configured)."
msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервэрээс хариу алга"
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3871,6 +3914,16 @@ msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана."
msgid "Inside tables:"
msgstr "Хүснэгт(үүд) дотор:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Бүгдийг сонгох"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Бүх сонгосныг болих"
+
#: libraries/DbSearch.class.php:455
#, fuzzy
#| msgid "Inside table(s):"
@@ -3940,7 +3993,7 @@ msgid "All"
msgstr "Бүх"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of fields"
@@ -4261,7 +4314,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Сервэр"
@@ -4272,34 +4325,13 @@ msgstr "Сервэр"
msgid "View"
msgstr "Харц"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Бүтэц"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4396,8 +4428,8 @@ msgstr "Багана нэмэх/устгах"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
@@ -4520,7 +4552,7 @@ msgid "Recent"
msgstr "Да.эхлэх"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4597,16 +4629,6 @@ msgstr "Нэгдэл"
msgid "Sorting"
msgstr "Эрэмбэлж байна"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Хүснэгт"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Хэлэлцээр зохицуулагч"
@@ -5136,7 +5158,7 @@ msgstr "ХИ хэмжээ: %s%s"
msgid "MySQL said: "
msgstr "MySQL хэлэх нь: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "SQL тайлбар"
@@ -5153,7 +5175,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "PHP-кодгүй"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "PHP-код үүсгэх"
@@ -5273,17 +5295,6 @@ msgstr "Уг утгыг хэрэглэх"
msgid "Rows"
msgstr "Мөрүүд"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Өгөгдөл"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5467,7 +5478,7 @@ msgstr "Сервэр"
msgid "Invalid authentication method set in configuration:"
msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5475,24 +5486,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5738,7 +5749,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -6149,7 +6160,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -6159,7 +6170,7 @@ msgstr "Баримтжуулал"
msgid "Save as file"
msgstr "Илгээх"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -6188,17 +6199,17 @@ msgstr "Шахалт"
msgid "Put columns names in the first row"
msgstr "Эхний мөрт талбаруудын нэрийг тавих"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Талбарыг хаасан"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6218,16 +6229,16 @@ msgstr "NULL-ыг орлуулах нь"
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Шугамыг төгсгөгч"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6305,7 +6316,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Файл(ууд)-г дарж бичих"
@@ -6324,8 +6335,8 @@ msgstr "AUTO_INCREMENT утга нэмэх"
msgid "Enclose table and column names with backquotes"
msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL нийцтэй горим"
@@ -6446,17 +6457,17 @@ msgid "Customize browse mode."
msgstr "Авто сэргээх горим"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Query results operations"
msgid "Customize default options."
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV"
@@ -6488,7 +6499,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6541,179 +6552,191 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Use text field"
+msgid "Navigation tree"
+msgstr "Бичвэр талбар хэрэглэх"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Use text field"
+msgid "Customize the navigation tree."
+msgstr "Бичвэр талбар хэрэглэх"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Сервэрүүд"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Relational schema"
msgid "Servers display options."
msgstr "Хамааралтай схем"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Table options"
msgid "Tables display options."
msgstr "Хүснэгтийн сонголтууд"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Add new field"
msgid "Main panel"
msgstr "Шинэ талбар нэмэх"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
#, fuzzy
#| msgid "Microsoft Excel 2000"
msgid "Microsoft Office"
msgstr "Microsoft Excel 2000"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Хуудасны дугаар:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Баримт"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "Баримт"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "MySQL connection collation"
msgid "Enter server connection parameters."
msgstr "MySQL холболтын кодлол"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
#, fuzzy
#| msgid "Use text field"
msgid "Customize navigation panel"
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Use text field"
msgid "Customize main panel"
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "Server variables and settings"
msgid "SQL queries settings."
msgstr "Сервэрийн утгууд болон тохиргоонууд"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Use text field"
msgid "Customize startup page."
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Database for user"
msgid "Database structure"
msgstr "Хэрэглэгчийн өгөгдлийн сан"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6721,201 +6744,201 @@ msgstr ""
msgid "Table structure"
msgstr "Хэрэглэгчийн өгөгдлийн сан"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Хамааралтай схем"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Цаасны хэмжээ"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Use text field"
msgid "Customize text input fields."
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
#, fuzzy
#| msgid "Query results operations"
msgid "Customize default options"
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Оруулсан файлын тогтнол"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "LOCAL түлхүүр үг хэрэглэх"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Эхний мөрт талбаруудын нэрийг тавих"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "AUTO_INCREMENT утга нэмэх"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6923,1132 +6946,1186 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for temporary sort files"
msgid "Maximum items on first level"
msgstr "Завсрын эрэмбэлэх файлын ХИ хэмжээ"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Тор харуулах"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Use text field"
msgid "Show logo in navigation panel."
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table caption"
msgid "Enable navigation tree expansion"
msgstr "Хүснэгтийн гарчиг"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Хүснэгтүүдийг харуулах"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Тор харуулах"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Тор харуулах"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Тор харуулах"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Процесууд харах"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Тор харуулах"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Тор харуулах"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Хүснэгтийг задлах"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table caption"
msgid "Table navigation bar"
msgstr "Хүснэгтийн гарчиг"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Хүснэгтийг да.нэрлэх"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "%s-д үндсэн түлхүүр нэмэгдлээ"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Thread засах"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Хамааралтай схем"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Relational schema"
msgid "For display Options"
msgstr "Хамааралтай схем"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Сессон утга"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Баримт"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "MySQL руу нэвтэрч чадсангүй"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Дурын хост"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Дурын хост"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Багана нэмэх/устгах"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Нууц үгийг солихгүй"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "өгөгдлийн сангийн нэр"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Хүснэгтийг задлах"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Утгууд"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "its the number of simultaneous connections the user may have."
msgid "Enable SSL for connection to MySQL server."
msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Баганын тайлбарыг харуулж байна"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Хүснэгт янзлах"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Баримтжуулал"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Авто сэргээх горим"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Хүснэгт хэрэглэх"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Хост хүснэгт хэрэглэх"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Хүснэгтийн тайлбар"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP -ийн мэдээлэл харах"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Тор харуулах"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "асуултад"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Багана нэмэх/устгах"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Анхдагч"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -8056,52 +8133,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8109,86 +8186,86 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username:"
msgid "Proxy username"
msgstr "Нэвтрэгч:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Нууц үг"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
#, fuzzy
#| msgid "Execute bookmarked query"
msgid "Enter executes queries in console"
msgstr "Тэмдэглэгдсэн асуулт ажиллуулах"
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Enable Zero Configuration mode"
@@ -8214,48 +8291,48 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV хэрэглэх нь LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Баримт"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "ӨС гаргах сонголтууд"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV өгөгдлийг MS Excel-ээр"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8286,7 +8363,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8365,7 +8442,7 @@ msgstr "Хүснэгт үүсгэх"
msgid "Number of columns"
msgstr "Талбаруудын тоо"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8420,69 +8497,69 @@ msgstr "Хүснэгт"
msgid "Format:"
msgstr "Тогтнол"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
#, fuzzy
#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "Өөрчлөлийн сонголтууд"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Мөрүүд"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "Сервэр дээрх хадгалах хавтас %s"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "File name template"
msgid "File name template:"
msgstr "Файлын нэрийн загвар"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, fuzzy, php-format
#| msgid ""
#| "alue is interpreted using %1$sstrftime%2$s, so you can use time matting "
@@ -8497,84 +8574,96 @@ msgstr ""
"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Файлын кодлол:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Шахалт"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "zip-ээр шахах"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "gzip-ээр шахах"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Илгээх"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Илгээх"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Хүснэгтүүд сонго"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Хүснэгтүүд сонго"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "database name"
msgid "New database name"
msgstr "өгөгдлийн сангийн нэр"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "User name"
msgid "New table name"
msgstr "Хэрэглэгчийн нэр"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Баганын нэрс"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -9174,7 +9263,7 @@ msgid "Create an index on %s columns"
msgstr " %s багануудад индекс үүсгэх"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Нуух"
@@ -9322,11 +9411,6 @@ msgstr "Ба"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Илгээ"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Add new field"
@@ -9548,29 +9632,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Баганын нэрс"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Event"
msgid "Events:"
msgstr "Үзэгдэл"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Функцүүд"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Процедурүүд"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Хүснэгт"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "View"
msgid "Views:"
@@ -9600,39 +9690,39 @@ msgstr "Бичвэр талбар хэрэглэх"
msgid "Reload navigation panel"
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "table name"
msgid "Filter databases by name or regex"
msgstr "хүснэгтийн нэр"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Илгээх"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "table name"
msgid "Filter by name or regex"
msgstr "хүснэгтийн нэр"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9670,7 +9760,7 @@ msgstr ""
msgid "Database operations"
msgstr "ӨС гаргах сонголтууд"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10955,26 +11045,26 @@ msgstr "Баганын нэрс"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "CSV оруулалтад буруу параметр нь: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, fuzzy, php-format
#| msgid "Invalid field count in CSV input on line %d."
msgid "Invalid column count in CSV input on line %d."
@@ -11382,61 +11472,61 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Өөрчлөлт хадгалагдав"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Файлыг унших боломжгүй байна"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Дотоод холбоо нэмэгдэв"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Файлыг унших боломжгүй байна"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Өөрчлөлт хадгалагдав"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Файлыг унших боломжгүй байна"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Файлыг унших боломжгүй байна"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11537,54 +11627,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Хүснэгтийг да.нэрлэх"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "тайлбаргүй"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12402,7 +12498,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17915,9 +18011,6 @@ msgstr "ХИ. давхацсан холболтууд"
#~ msgid "Reset"
#~ msgstr "Дахих"
-#~ msgid "Show processes"
-#~ msgstr "Процесууд харах"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Да.эхлэх"
diff --git a/po/ms.po b/po/ms.po
index 7cc2074493..c4854ac55b 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-11-05 10:35+0200\n"
"Last-Translator: Michal Čihař
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Papar semua"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
#, fuzzy
#| msgid "Linestring"
msgid "Original length"
msgstr "Rentetan talian"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "DiBatalkan"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
#, fuzzy
msgid "Import status"
msgstr "Eksport"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
msgstr "Pilih Jadual"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
#, fuzzy
msgid "Go to link:"
msgstr "Tiada pangkalan data"
-#: js/messages.php:511
+#: js/messages.php:512
#, fuzzy
#| msgid "Column names"
msgid "Copy column name."
msgstr "Nama Kolum"
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
#, fuzzy
msgid "Generate"
msgstr "Dijana oleh"
-#: js/messages.php:517
+#: js/messages.php:518
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:520
+#: js/messages.php:521
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Isn"
-#: js/messages.php:523
+#: js/messages.php:524
#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
msgstr "Papar semua"
-#: js/messages.php:524
+#: js/messages.php:525
#, fuzzy
#| msgid "Indexes"
msgid "Hide Panel"
msgstr "Indeks"
-#: js/messages.php:525
+#: js/messages.php:526
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden navigation tree items."
msgstr "Papar grid"
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
#, fuzzy
#| msgid "Indexes"
msgid "Link with main panel"
msgstr "Indeks"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
#, fuzzy
#| msgid "Indexes"
msgid "Unlink from main panel"
msgstr "Indeks"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "Jadual-jadual"
-#: js/messages.php:531
+#: js/messages.php:532
#, fuzzy
msgid "views"
msgstr "Medan"
-#: js/messages.php:532
+#: js/messages.php:533
#, fuzzy
msgid "procedures"
msgstr "Proses-proses"
-#: js/messages.php:533
+#: js/messages.php:534
#, fuzzy
msgid "events"
msgstr "Hantar"
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
msgid "functions"
msgstr "Fungsi"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2630,135 +2673,135 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
#, fuzzy
msgid "up to date"
msgstr "Tiada pangkalan data"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
#, fuzzy
msgid "Create view"
msgstr "Versi Pelayan"
-#: js/messages.php:548
+#: js/messages.php:549
#, fuzzy
msgid "Send Error Report"
msgstr "Pilihan Pelayan"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
#, fuzzy
#| msgid "General relation features"
msgid "Change Report Settings"
msgstr "Ciri-ciri hubungan am"
-#: js/messages.php:554
+#: js/messages.php:555
#, fuzzy
msgid "Show Report Details"
msgstr "Papar jadual"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
msgstr "Abai"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
msgstr "Papar kueri ini di sini lagi"
-#: js/messages.php:590
+#: js/messages.php:591
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to delete this bookmark?"
msgstr "Adakah anda ingin "
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Komen jadual"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
msgid "Hide arguments"
msgstr "kueri-SQL"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Terdahulu"
-#: js/messages.php:630
+#: js/messages.php:631
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2766,96 +2809,96 @@ msgid "Next"
msgstr "Berikut"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jumlah"
-#: js/messages.php:637
+#: js/messages.php:638
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mac"
-#: js/messages.php:640
+#: js/messages.php:641
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mei"
-#: js/messages.php:642
+#: js/messages.php:643
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:643
+#: js/messages.php:644
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:644
+#: js/messages.php:645
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ogos"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2863,78 +2906,78 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Dis"
-#: js/messages.php:683
+#: js/messages.php:684
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Aha"
-#: js/messages.php:684
+#: js/messages.php:685
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Isn"
-#: js/messages.php:685
+#: js/messages.php:686
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sel"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2942,199 +2985,199 @@ msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Aha"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Isn"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sel"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Rab"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Kha"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Tiada"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "sedang digunakan"
-#: js/messages.php:755
+#: js/messages.php:756
#, fuzzy
#| msgid "Records"
msgid "Second"
msgstr "Rekod"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
#, fuzzy
#| msgid "Add new field"
msgid "Please fix this field"
msgstr "Tambah medan baru"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
#, fuzzy
#| msgid "Please select a database"
msgid "Please enter a valid date"
msgstr "Sila pilih pangkalan data"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please choose a page to edit"
msgid "Please enter a valid date or time"
msgstr "Sila Pilih Laman untuk diubah"
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -3205,16 +3248,16 @@ msgstr "per jam"
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -3235,7 +3278,7 @@ msgid "Requery"
msgstr "pada kueri"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3441,7 +3484,7 @@ msgid "Count:"
msgstr "Pangkalan data %1$s telah dijana."
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3650,25 +3693,25 @@ msgstr "Memaparkan penanda halaman"
msgid "Delete bookmark"
msgstr "Cari"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3742,6 +3785,16 @@ msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")."
msgid "Inside tables:"
msgstr "Di dalam jadual:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Sila pilih pangkalan data"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Nyahpilih Semua"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "Di dalam kolum:"
@@ -3808,7 +3861,7 @@ msgid "All"
msgstr "Semua"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
#, fuzzy
#| msgid "Number of rows per page"
@@ -4126,7 +4179,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Pelayan"
@@ -4137,34 +4190,13 @@ msgstr "Pelayan"
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -4261,8 +4293,8 @@ msgstr "Tambah/Padam Kolum Medan"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "pangkalan data"
@@ -4378,7 +4410,7 @@ msgid "Recent"
msgstr "Ulangtetap"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
@@ -4453,16 +4485,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Jadual-jadual"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4984,7 +5006,7 @@ msgstr ""
msgid "MySQL said: "
msgstr "MySQL berkata: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Terangkan Kod SQL"
@@ -5001,7 +5023,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "Tanpa Kod PHP"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Cipta Kod PHP"
@@ -5119,17 +5141,6 @@ msgstr "Guna nilai ini"
msgid "Rows"
msgstr "Baris"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5304,7 +5315,7 @@ msgstr "Pelayan"
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5312,24 +5323,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5574,7 +5585,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5982,7 +5993,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -5992,7 +6003,7 @@ msgstr "Penyataan"
msgid "Save as file"
msgstr "Simpan sebagai fail"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
#, fuzzy
msgid "Character set of the file"
msgstr "Fail bagi set Aksara:"
@@ -6022,17 +6033,17 @@ msgstr "Mampatan"
msgid "Put columns names in the first row"
msgstr "Letakkan medan di baris pertama"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with"
msgstr "Medan disertai oleh"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Fields escaped by"
msgid "Columns escaped with"
@@ -6050,16 +6061,16 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated with"
msgstr "Baris ditamatkan oleh"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6136,7 +6147,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -6155,8 +6166,8 @@ msgstr "Tambahkan nilai AUTO_INCREMENT"
msgid "Enclose table and column names with backquotes"
msgstr "Sertakan nama jadual dan medan dengan backquotes"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -6278,15 +6289,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "data CSV"
@@ -6315,7 +6326,7 @@ msgstr ""
msgid "Customize default export options."
msgstr "Statistik pangkalan data"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -6362,170 +6373,182 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Table of contents"
+msgid "Navigation tree"
+msgstr "Kandungan"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Show grid"
+msgid "Customize the navigation tree."
+msgstr "Papar grid"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
#, fuzzy
msgid "Servers"
msgstr "Pelayan"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
msgid "Servers display options."
msgstr "Statistik pangkalan data"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
msgid "Tables display options."
msgstr "Statistik pangkalan data"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
#, fuzzy
#| msgid "Indexes"
msgid "Main panel"
msgstr "Indeks"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
#, fuzzy
#| msgid "Page number:"
msgid "Page titles"
msgstr "Muka Surat:"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
#, fuzzy
#| msgid "Documentation"
msgid "Authentication"
msgstr "Dokumentasi"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Documentation"
msgid "Authentication settings."
msgstr "Dokumentasi"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
#, fuzzy
msgid "SQL queries"
msgstr "kueri-SQL"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
#, fuzzy
msgid "SQL Query box"
msgstr "kueri-SQL"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
msgid "SQL queries settings."
msgstr "kueri-SQL"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
#, fuzzy
msgid "Startup"
msgstr "Status"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
#, fuzzy
#| msgid "Databases"
msgid "Database structure"
msgstr "pangkalan data"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
#, fuzzy
@@ -6533,198 +6556,198 @@ msgstr ""
msgid "Table structure"
msgstr "pangkalan data"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
#, fuzzy
msgid "Tabs"
msgstr "Jadual"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
#, fuzzy
#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "Skema Hubungan"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
#, fuzzy
#| msgid "Add new field"
msgid "Text fields"
msgstr "Tambah medan baru"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Add new field"
msgid "Customize text input fields."
msgstr "Tambah medan baru"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Letakkan medan di baris pertama"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6732,1126 +6755,1180 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show grid"
msgid "Show databases navigation as tree"
msgstr "Papar grid"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Table of contents"
msgid "Show logo in navigation panel."
msgstr "Kandungan"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table of contents"
msgid "Enable navigation tree expansion"
msgstr "Kandungan"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Papar jadual"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Papar grid"
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show views in tree"
+msgstr "Papar grid"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Papar grid"
+
+#: libraries/config/messages.inc.php:493
+msgid "Show functions in tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Papar proses"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show grid"
+msgid "Show events in tree"
+msgstr "Papar grid"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show grid"
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Papar grid"
+
+#: libraries/config/messages.inc.php:503
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr ""
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analyze table"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
msgid "These are Edit, Copy and Delete links."
msgstr ""
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
msgid "Use natural order for sorting table and database names."
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Alter table order by"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
msgid "Use only icons, only text or both."
msgstr ""
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
#, fuzzy
#| msgid "Table of contents"
msgid "Table navigation bar"
msgstr "Kandungan"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Tukarnama jadual ke"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key default sort order"
msgstr "Kekunci utama telah ditambah pada %s"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display"
msgstr "Skema Hubungan"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
msgid "For display Options"
msgstr "Statistik pangkalan data"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Nilai Sessi"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Documentation"
msgid "Authentication method to use."
msgstr "Dokumentasi"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Tidak boleh log-masuk ke server MySQL"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
#, fuzzy
msgid "Connection type"
msgstr "Hubungan"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Sebarang hos"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Any host"
msgid "Control port"
msgstr "Sebarang hos"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
#, fuzzy
msgid "Hide databases"
msgstr "Tiada pangkalan data"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
#, fuzzy
msgid "Server hostname"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Central columns table"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Do not change the password"
msgid "Try to connect without password."
msgstr "Jangan tukar katalaluan"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Pangkalan Data"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
#, fuzzy
msgid "Server port"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analyze table"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
msgstr "Pemboleh-pembolehubah"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
#, fuzzy
msgid "Relation table"
msgstr "Baiki jadual"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
#, fuzzy
msgid "Server socket"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
msgid "Enable SSL for connection to MySQL server."
msgstr "Limits the number of new connections the user may open per hour."
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Memaparkan Komen Kolum"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Penyataan"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
#, fuzzy
msgid "Automatically create versions"
msgstr "Versi Pelayan"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Guna Jadual"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Komen jadual"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Papar maklumat PHP"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
#, fuzzy
msgid "Show field types"
msgstr "Papar jadual"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Papar grid"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
msgid "Retain query box"
msgstr "kueri-SQL"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
#, fuzzy
msgid "Show statistics"
msgstr "Statistik Baris"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Asal"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7859,52 +7936,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7912,84 +7989,84 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
msgid "Proxy username"
msgstr "Namapengguna:"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Katalaluan"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
msgid "Send error reports"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Modifications have been saved"
msgid "Enable Zero Configuration mode"
@@ -8015,47 +8092,47 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Spreadsheet"
msgstr "Dokumentasi"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
#, fuzzy
msgid "Database export options"
msgstr "Statistik pangkalan data"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV untuk sata MS Excel"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Documentation"
msgid "OpenDocument Text"
@@ -8086,7 +8163,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -8162,7 +8239,7 @@ msgstr "Cipta Halaman baru"
msgid "Number of columns"
msgstr "Bilangan baris per halaman"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -8217,66 +8294,66 @@ msgstr "Jadual-jadual"
msgid "Format:"
msgstr "Format"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
#, fuzzy
#| msgid "Rows"
msgid "Rows:"
msgstr "Baris"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, fuzzy, php-format
msgid "Save on server in the directory %s"
msgstr "direktori muatnaik pelayan-web"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
#, fuzzy
#| msgid "Failed attempts"
msgid "File name template:"
msgstr "Percubaan Gagal"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -8284,84 +8361,96 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Fail bagi set Aksara:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
#, fuzzy
#| msgid "Compression"
msgid "Compression:"
msgstr "Mampatan"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
msgstr "\"zipped\""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "\"digzip\""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
#, fuzzy
#| msgid "Save as file"
msgid "View output as text"
msgstr "Simpan sebagai fail"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Create table on database %s"
+msgid "Export databases as separate files"
+msgstr "Cipta jadual baru pada pangkalan data %s"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "Export"
+msgid "Export tables as separate files"
+msgstr "Eksport"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
#, fuzzy
#| msgid "Save as file"
msgid "Save output to a file"
msgstr "Simpan sebagai fail"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Pilih Jadual"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Pilih Jadual"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
#, fuzzy
#| msgid "Database"
msgid "New database name"
msgstr "Pangkalan Data"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "New table"
msgid "New table name"
msgstr "Tiada Jadual"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Column names"
msgid "Old column name"
msgstr "Nama Kolum"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Column names"
msgid "New column name"
@@ -8930,7 +9019,7 @@ msgid "Create an index on %s columns"
msgstr "Cipta indeks pada %s "
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -9077,11 +9166,6 @@ msgstr "Jum"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Hantar"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Replace table data with file"
@@ -9302,26 +9386,32 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names"
+msgid "Groups:"
+msgstr "Nama Kolum"
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
msgid "Events:"
msgstr "Hantar"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
msgid "Functions:"
msgstr "Fungsi"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
msgid "Procedures:"
msgstr "Proses-proses"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Jadual-jadual"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -9349,38 +9439,38 @@ msgstr "Kandungan"
msgid "Reload navigation panel"
msgstr "Kandungan"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Alter table order by"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
#, fuzzy
#| msgid "Save as file"
msgid "Clear fast filter"
msgstr "Simpan sebagai fail"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Alter table order by"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9417,7 +9507,7 @@ msgstr ""
msgid "Database operations"
msgstr "Statistik pangkalan data"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show grid"
msgid "Show hidden items"
@@ -10667,26 +10757,26 @@ msgstr "Nama Kolum"
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -11029,60 +11119,60 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been added."
msgstr "Pengubahsuaian telah disimpan"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Fail tidak boleh dibaca"
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
msgid "Internal relation has been added."
msgstr "Ciri-ciri hubungan am"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be added!"
msgstr "Fail tidak boleh dibaca"
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "Modifications have been saved"
msgid "FOREIGN KEY relation has been removed."
msgstr "Pengubahsuaian telah disimpan"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "File could not be read"
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Fail tidak boleh dibaca"
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "File could not be read"
msgid "Error: Internal relation could not be removed!"
msgstr "Fail tidak boleh dibaca"
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
msgid "Internal relation has been removed."
msgstr "Ciri-ciri hubungan am"
@@ -11177,54 +11267,60 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Remembering Designer Settings"
+msgstr "Tukarnama jadual ke"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "tiada keterangan"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -12010,7 +12106,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Server"
msgid "Current Server:"
@@ -17110,9 +17206,6 @@ msgstr ""
#~ msgid "Reset"
#~ msgstr "Ulangtetap"
-#~ msgid "Show processes"
-#~ msgstr "Papar proses"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Ulangtetap"
diff --git a/po/nb.po b/po/nb.po
index e0fa863eb2..b8b8459ac1 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-22 04:13+0200\n"
"Last-Translator: Sebastian
- Ctrl + klikk eller Alt + klikk (Mac: Shift "
"+ Option + Klikk). For å fjerne kolonnen fra BESTILLT AV-leddet"
-#: js/messages.php:479
+#: js/messages.php:480
msgid "Click to mark/unmark."
msgstr "Klikk for å markere/fjern markering."
-#: js/messages.php:480
+#: js/messages.php:481
msgid "Double-click to copy column name."
msgstr "Dobbelklikk for å kopiere kolonnenavn."
-#: js/messages.php:482
+#: js/messages.php:483
msgid "Click the drop-down arrow
to toggle column's visibility."
msgstr "Klikk pilen som peker ned
for å bytte på kolonnens synlighet."
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr "Vis alle"
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2322,11 +2365,11 @@ msgstr ""
"valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger "
"virker kanskje ikke etter lagring."
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr "Skriv inn en gyldig heksadesimal streng. Gyldige tegn er 0-9, A-F."
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
@@ -2334,125 +2377,125 @@ msgstr ""
"Ønsker du virkelig å se alle radene? For et stort bord kan dette krasje "
"nettleseren."
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr "Opprinnelig lengde"
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr "avbryt"
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr "Avbrutt"
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr "Vellykket"
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr "Import status"
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr "Legg filene her"
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr "Velg database først"
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr "Du kan også endre de fleste verdiene
ved å dobbeltklikke på dem."
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr "Du kan også endre de fleste verdiene
ved å dobbeltklikke på dem."
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr "Gå til link:"
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr "Kopier kolonnenavn."
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Høyreklikk på kolonnenavnet for å kopiere det til utklippstavlen."
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr "Generer passord"
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr "Generer"
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr "Endre passord"
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr "Mer"
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr "Vis panel"
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr "Skjul panel"
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr "Vis skjulte elementer i navigasjonstreet."
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr "Lenke med hovedpanelet"
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr "Fjern lenke fra hovedpanelet"
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr "Å filtrere alle databaser på serveren, trykker Enter etter et søkeord"
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr "Slik filtrerer du alle %s i databasen, trykk Enter etter et søkeord"
-#: js/messages.php:530
+#: js/messages.php:531
msgid "tables"
msgstr "tabeller"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr "visning"
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr "prosedyrer"
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr "hendelse"
-#: js/messages.php:534
+#: js/messages.php:535
msgid "functions"
msgstr "funksjoner"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr "Den valgte siden ble ikke funnet i historikken. Siden kan ha utløpt."
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2462,50 +2505,50 @@ msgstr ""
"versjon er %s, utgitt den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ", siste tilgjengelige versjon:"
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr "er oppdatert"
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr "Opprett view"
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr "Send feilrapport"
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr "Send feilrapport"
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
"Det oppstod en alvorlig feil i JavaScript. Ønsker du å sende en feilrapport?"
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr "Endre Rapportinnstillinger"
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr "Vis Rapportdetaljer"
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
"Eksporten er ufullstendig, på grunn av en lav kjøringsfrist på PHP nivå!"
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
@@ -2514,62 +2557,62 @@ msgstr ""
"Advarsel: et skjema på denne siden har mer enn %d felt. Ved innsending kan "
"noen av feltene bli ignorert, på grunn av PHP max_input_vars konfigurasjon."
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr "Noen feil har blitt oppdaget på serveren!"
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr "Vennligst se nederst i dette vinduet."
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr "Ignorer alle"
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr "I henhold til dine innstillinger, blir de sendt i dag, vær tålmodig."
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr "Utfør denne spørring igjen?"
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr "Vil du virkelig slette dette bokmerket?"
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments"
msgid "Show arguments"
msgstr "Tabellkommentarer"
-#: js/messages.php:595
+#: js/messages.php:596
#, fuzzy
#| msgid "Hide search results"
msgid "Hide arguments"
msgstr "Skjul søkeresultater"
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
@@ -2579,339 +2622,339 @@ msgstr ""
"grensen er nådd, enkelte funksjoner kan ikke fungere skikkelig for deg. I "
"Safari er slike problem ofte forårsaket av \"Private Mode Browsing\"."
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr "Forrige"
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr "Neste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr "I dag"
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr "Januar"
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr "Februar"
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr "Mars"
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr "April"
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr "Mai"
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr "Juni"
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr "Juli"
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr "August"
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr "September"
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr "Oktober"
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr "November"
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr "Des"
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr "Søndag"
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr "Mandag"
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr "Tirsdag"
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr "Lør"
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr "Søndag"
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr "Man"
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr "Tir"
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr "Tor"
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr "Lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr "Uke"
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr "kalender-måned-år"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr "ingen"
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr "Time"
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr "Minutt"
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr "Sekund"
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr "Vennligst ordne dette feltet"
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr "Vennligst tast inn en gyldig e-post adresse"
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr "Vennligst tast inn en gyldig URL"
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr "Vennligst tast inn en gyldig dato"
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr "Vennligst tast inn en gyldig dato ( ISO )"
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr "Vennligst tast inn et gyldig tall"
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr "Vennligst tast inn et gyldig kreditkort nummer"
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr "Vennligst oppgi kun tall"
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr "Vennligst tast inn den samme verdien igjen"
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr "Vennligst tast inn minst {0} tegn"
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr "Vennligst tast inn en verdi mellom {0} og {1}"
-#: js/messages.php:780
+#: js/messages.php:781
#, fuzzy
#| msgid "Please enter a valid length!"
msgid "Please enter a value less than or equal to {0}"
msgstr "Vennligst oppgi en gyldig lengde!"
-#: js/messages.php:781
+#: js/messages.php:782
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a value greater than or equal to {0}"
msgstr "Vennligst tast inn et gyldig tall!"
-#: js/messages.php:783
+#: js/messages.php:784
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid date or time"
msgstr "Vennligst tast inn et gyldig tall!"
-#: js/messages.php:784
+#: js/messages.php:785
#, fuzzy
#| msgid "Please enter a valid number!"
msgid "Please enter a valid HEX input"
msgstr "Vennligst tast inn et gyldig tall!"
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2984,16 +3027,16 @@ msgstr "per time"
msgid "per day"
msgstr "hver dag"
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr "Nåværende konfigurasjonsfil (%s) er ikke lesbar."
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "Gale tillatelser på konfigurasjonsfilen, den burde ikke være skrivbar!"
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr "Fontstørrelse"
@@ -3012,7 +3055,7 @@ msgid "Requery"
msgstr "Spør igjen"
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3211,7 +3254,7 @@ msgid "Count:"
msgstr "Antall"
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3386,7 +3429,7 @@ msgstr "Oppdater bokmerke"
msgid "Delete bookmark"
msgstr "Slett bokmerke"
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -3394,19 +3437,19 @@ msgstr ""
"Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke "
"korrekt konfigurert)."
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr "Tjeneren svarer ikke."
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr "Vennligst sjekk privilegiene på mappen som inneholder databasen."
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr "Detaljer…"
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
@@ -3481,6 +3524,16 @@ msgstr "Ord er separert med et mellomrom (\" \")."
msgid "Inside tables:"
msgstr "I tabellene:"
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "Marker alle"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "Avmarker alle"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr "I kolonne:"
@@ -3534,7 +3587,7 @@ msgid "All"
msgstr "Alle"
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr "Antall rader:"
@@ -3834,7 +3887,7 @@ msgstr ""
"fjernes."
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr "Tjener"
@@ -3845,34 +3898,13 @@ msgstr "Tjener"
msgid "View"
msgstr "Vis"
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr "Struktur"
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr "SQL"
@@ -3967,8 +3999,8 @@ msgstr "Senter kolonner"
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr "Databaser"
@@ -4071,7 +4103,7 @@ msgid "Recent"
msgstr "Nylige"
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr "Favorittabeller"
@@ -4140,16 +4172,6 @@ msgstr "Sammenføyninger"
msgid "Sorting"
msgstr "Sortering"
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr "Tabeller"
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr "Transaksjonskoordinator"
@@ -4717,7 +4739,7 @@ msgstr "Maksimum størrelse: %s%s"
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr "Forklar SQL"
@@ -4734,7 +4756,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr "uten PHP kode"
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr "Lag PHP kode"
@@ -4847,17 +4869,6 @@ msgstr "Bruk denne verdien"
msgid "Rows"
msgstr "Rader"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr "Data"
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -5022,7 +5033,7 @@ msgstr "Server %d"
msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:"
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -5030,24 +5041,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du burde oppgradere til %s %s eller nyere."
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr "mulig sikkerhetshull"
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr "numerisk nøkkel oppdaget"
@@ -5276,7 +5287,7 @@ msgid "Set value: %s"
msgstr "Sett verdi: %s"
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr "Gjennopprett standard verdi"
@@ -5859,7 +5870,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr "Maks kjøretid"
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, fuzzy, php-format
#| msgid "Statements"
msgid "Use %s statement"
@@ -5869,7 +5880,7 @@ msgstr "Oversikt"
msgid "Save as file"
msgstr "Lagre som fil"
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr "Filens tegnsett"
@@ -5896,15 +5907,15 @@ msgstr "Kompresjon"
msgid "Put columns names in the first row"
msgstr "Sett inn kolonnenavn i første rad"
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr "Kolonner omsluttet av"
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
#, fuzzy
#| msgid "Columns escaped by"
msgid "Columns escaped with"
@@ -5922,16 +5933,16 @@ msgstr "Erstatt NULL med"
msgid "Remove CRLF characters within columns"
msgstr "Fjern CRLF tegn inne i kolonner"
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
#, fuzzy
#| msgid "Columns terminated by"
msgid "Columns terminated with"
msgstr "Kolonner avsluttet med"
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with"
@@ -6003,7 +6014,7 @@ msgid "Save on server"
msgstr "Lagre på tjener"
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr "Skriv over eksisterende filer"
@@ -6020,8 +6031,8 @@ msgstr "Legg til AUTO_INCREMENT verdi"
msgid "Enclose table and column names with backquotes"
msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn"
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr "SQL kompatibilitetsmodus"
@@ -6150,17 +6161,17 @@ msgid "Customize browse mode."
msgstr "Endre visningsmodus"
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
msgstr "Tilpass standardinstillinger"
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr "CSV-data"
@@ -6194,7 +6205,7 @@ msgstr "Eksportinnstillinger"
msgid "Customize default export options."
msgstr "Endre standard eksportinnstillinger"
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr "Egenskaper"
@@ -6249,46 +6260,58 @@ msgstr "Navigasjonspanel"
msgid "Customize appearance of the navigation panel."
msgstr "Endre utseendet til navigasjonsrammen"
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+#, fuzzy
+#| msgid "Navigation panel"
+msgid "Navigation tree"
+msgstr "Navigasjonspanel"
+
+#: libraries/config/messages.inc.php:249
+#, fuzzy
+#| msgid "Customize navigation panel"
+msgid "Customize the navigation tree."
+msgstr "Tilpasse navigasjonspanelet"
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr "Tjenere"
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
msgstr "Tjenervisningsinnstillinger"
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
msgstr "Tabellvisningsinnstillinger"
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr "Hovedpanel"
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr "Microsoft Office"
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr "Andre hovedinnstillinger"
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
msgstr "Innstillinger som ikke passer andre steder"
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr "Sidetitler"
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
@@ -6302,11 +6325,11 @@ msgstr ""
"[doc@cfg_TitleTable]dokumentasjon[/doc] for spesielle strenger som kan tas i "
"bruk for å tilgang til spesialverdier."
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr "Sikkerhet"
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
@@ -6318,25 +6341,25 @@ msgstr ""
"Merk at phpMyAdmin er bare et brukergrensesnitt og dens egenskaper begrenser "
"ikke MySQL"
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr "Grunnleggende innstillinger"
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr "Godkjenning"
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
msgstr "Innstillinger godkjenning"
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr "Tjenerinnstillinger"
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
@@ -6348,17 +6371,17 @@ msgstr ""
"Avanserte tjenerinnstillinger, ikke endre disse hvis du ikke vet hva de er "
"for"
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
msgstr "Legg til tjenertilkoblingsparametre"
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr "Konfigurasjonslager"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
@@ -6373,11 +6396,11 @@ msgstr ""
"funksjonalitet, se [doc@linked-tables]phpMyAdming konfigurasjonslager[/doc] "
"i dokumentasjonen"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr "Endringssporing"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
@@ -6385,121 +6408,121 @@ msgstr ""
"Sporing av endringer utført i databasen. Krever at phpMyAdming "
"konfigurasjonslager er satt opp."
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr "Endre eksportstandarder"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr "Endre importstandarder"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr "Tilpasse navigasjonspanelet"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr "Tilpasse hovedpanelet"
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr "SQL spørringer"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr "SQL spørringsboks"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
msgstr "Endre linker vist i SQL spørringsbokser"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
msgstr "SQL søkeinnstilinger"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr "Oppstart"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
msgstr "Endre oppstartssiden"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr "Databasestruktur"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr "Tabellstruktur"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr "Faner"
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
msgstr "Velg hvordan du ønsker fanene skal fungere"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr "Vis relasjonsskjema"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr "Papirstørrelse"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr "Tekstfelt"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
msgstr "Tilpass tekstfelter"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr "Texy! tekst"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr "Tilpass standardinstillinger"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr "Advarsler"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr "Slå av noen av advarslene fra phpMyAdmin"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
@@ -6511,15 +6534,15 @@ msgstr ""
"Slå på [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a]-komprimering for import "
"og eksportoperasjoner"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr "GZip"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr "Ekstra parametre for iconv"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
@@ -6531,11 +6554,11 @@ msgstr ""
"Hvis påslått vil PMA forsette å behandle flerspørrings spørringer også hvis "
"en av spørringene feiler"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr "Ignorer flere spørringsfeil"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
@@ -6545,25 +6568,25 @@ msgstr ""
"nærheten av tidsbegrensningen. Dette kan være en god måte å importere store "
"filer, men den kan knekke transaksjoner."
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr "Delvis import: tillat avbrudd"
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr "Ikke avbryt under INSERT feil"
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
@@ -6575,62 +6598,62 @@ msgstr ""
"Standard format, merk at denne lista avhenger av lokasjon (database, tabell) "
"og bare SQL er alltid tilgjengelig"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr "Importfilformat"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr "Bruk LOCAL nøkkelord"
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr "Kolonnenavn i første rad"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr "Ikke importer tomme rader"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr "Importer valuta ($5.00 til 5.00)"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importer prosenter som heltall (12.00% til .12)"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
msgstr "Antall poster(spørringer) å hoppe over fra start"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr "Delvis import: hopp over spørringer"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ikke bruk AUTO_INCREMENT for nullverdier"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr "Initiell tilstand for slidere"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
msgstr "Hvor mange rader som kan settes inn på en gang"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr "Antall innsettingsrader"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
#, fuzzy
#| msgid ""
#| "Maximum number of characters shown in any non-numeric column on browse "
@@ -6640,11 +6663,11 @@ msgid ""
msgstr ""
"Maksimalt antall karakterer vist i ikke-numeriske kolonner i oversiktsvisning"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr "Begrens kolonne tegn"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -6654,11 +6677,11 @@ msgstr ""
"ellers bare for den aktuelle tjeneren. Sett denne til FALSE gjør det lett å "
"glemme å logge ut fra andre tjenere når du bruker flere."
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr "Slett alle cookies ved utlogging"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
@@ -6670,11 +6693,11 @@ msgstr ""
"Definerer om forrige innlogging skal husker eller ikke i cookie "
"autentiseringsmodus"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr "Husk brukernavn"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6686,56 +6709,56 @@ msgstr ""
"sessjon, det vil si at den vil bli slettet så fort du lukker "
"nettleservinduet. Dette er anbefalt for ikke sikre brukermiljøer."
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr "Innloggings cookie lagring"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
msgstr "Definer hvor lenge (i sekunder) en innloggings cookie skal være gyldig"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr "Innloggings cookie gyldighet"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
#, fuzzy
#| msgid "Double size of textarea for LONGTEXT columns"
msgid "Double size of textarea for LONGTEXT columns."
msgstr "Dobbel størrelse i tekstområde for LONGTEXT kolonner"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr "Større tekstområde for LONGTEXT"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr "Maks antall tegn brukt når en SQL spørring er framvist"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr "Maks lengde SQL"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr "Brukere kan ikke angi en høyere verdi"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of databases displayed in database list."
msgstr "Maks antall tabeller vist i tabellista"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr "Maks antall databaser"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid ""
#| "The number of items that can be displayed on each page of the navigation "
@@ -6746,24 +6769,24 @@ msgid ""
msgstr ""
"Antall elementer som kan vises på hver enkelt side av navigasjonstreet."
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Maximum size for input field"
msgid "Maximum items on first level"
msgstr "Maksimum størrelse for innskrivningsfelt"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
"Antall elementer som kan vises på hver enkelt side av navigasjonstreet."
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
@@ -6771,21 +6794,21 @@ msgstr ""
"Antall rader som viser ved framvisning av et resultat. Hvis resultatet "
"inneholder flere rader vil \"Forrige\" og \"Neste\" linker bli vist."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr "Maks antall rader som kan framvises"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table list."
msgstr "Maks antall tabeller vist i tabellista"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr "Maks antall tabeller"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid ""
#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
@@ -6797,45 +6820,45 @@ msgstr ""
"Maks antal byte et skript har lov til å bruke, f.eks. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for ingen begrensning)"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr "Minnetak"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
msgstr "Vis skjulte elementer i navigasjonstreet."
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel."
msgstr "Vis logo i venstre ramme"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr "Vis logo"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to."
msgstr "URL hvor logoen i navigasjonsrammen skal peke til"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr "Logo link URL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
#, fuzzy
#| msgid ""
#| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
@@ -6847,31 +6870,31 @@ msgstr ""
"Åpne den linkede siden i hovedvinduet ([kbd]main[/kbd]) eller i en ny en "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr "Logo link mål"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel."
msgstr "Vis tjenervalg øverst i venstre ramme"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr "Vis tjenerutvalg"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr "Mål for hurtigtilgangsikon"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
msgstr "Mål for hurtigtilgangsikon"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
@@ -6879,15 +6902,15 @@ msgstr ""
"Angi minste antall elementer (tabeller, views, rutiner og hendelser) som "
"skal vises i en filterboks."
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr "Minste antall elementer som kreves for å vise filterboksen"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr "Minste antall databaser som skal vises i database-filterboksen"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
#, fuzzy
#| msgid ""
#| "Only light version; display databases in a tree (determined by the "
@@ -6899,121 +6922,179 @@ msgstr ""
"Kun i hurtigversjon; vis databaser i et tre (bestemmes av skilletegnet "
"definert nedenfor)"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
msgstr "Streng som skiller databaser i forskellige trenivåer"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr "Database treskilletegn"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
msgstr "Streng som skiller tabeller i forskellige trenivåer"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr "Tabelltreseparator"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr "Maks tabelltredybde"
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
msgstr "Uthev tjener under musmarkøren"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr "Aktiver utheving"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr "Enten å tilby muligheten for tre ekspansjon i navigasjonspanelet ."
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
msgstr "Tabellbasert navigasjonsområde"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Show tables"
+msgid "Show tables in tree"
+msgstr "Vis tabeller"
+
+#: libraries/config/messages.inc.php:489
+#, fuzzy
+#| msgid ""
+#| "Whether to offer the possibility of tree expansion in the navigation "
+#| "panel."
+msgid "Whether to show tables under database in the navigation tree"
+msgstr "Enten å tilby muligheten for tre ekspansjon i navigasjonspanelet ."
+
+#: libraries/config/messages.inc.php:490
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show views in tree"
+msgstr "Vis versjoner"
+
+#: libraries/config/messages.inc.php:492
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show views under database in the navigation tree"
+msgstr "Vis skjulte elementer i navigasjonstreet."
+
+#: libraries/config/messages.inc.php:493
+#, fuzzy
+#| msgid "Show function fields"
+msgid "Show functions in tree"
+msgstr "Vis funksjonsfelter"
+
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+#, fuzzy
+#| msgid "Show processes"
+msgid "Show procedures in tree"
+msgstr "Vis prosesser"
+
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+#, fuzzy
+#| msgid "Show versions"
+msgid "Show events in tree"
+msgstr "Vis versjoner"
+
+#: libraries/config/messages.inc.php:501
+#, fuzzy
+#| msgid "Show hidden navigation tree items."
+msgid "Whether to show events under database in the navigation tree"
+msgstr "Vis skjulte elementer i navigasjonstreet."
+
+#: libraries/config/messages.inc.php:503
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of recently used tables; set 0 to disable."
msgstr "Maksimalt antall nylig brukte tabeller; sett til 0 for å deaktivere"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:505
#, fuzzy
#| msgid "Maximum number of recently used tables; set 0 to disable"
msgid "Maximum number of favorite tables; set 0 to disable."
msgstr "Maksimalt antall nylig brukte tabeller; sett til 0 for å deaktivere"
-#: libraries/config/messages.inc.php:489
+#: libraries/config/messages.inc.php:506
msgid "Recently used tables"
msgstr "Sist brukte tabeller"
-#: libraries/config/messages.inc.php:491
+#: libraries/config/messages.inc.php:508
#, fuzzy
#| msgid "These are Edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links."
msgstr "Disse er Rediger-, kopi- og slettelenker"
-#: libraries/config/messages.inc.php:492
+#: libraries/config/messages.inc.php:509
msgid "Where to show the table row links"
msgstr "Hvor tabell-lenkene skal vises"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:510
msgid "Whether to show row links even in the absence of a unique key."
msgstr ""
-#: libraries/config/messages.inc.php:494
+#: libraries/config/messages.inc.php:511
msgid "Show row links anyway"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:513
#, fuzzy
#| msgid "Use natural order for sorting table and database names"
msgid "Use natural order for sorting table and database names."
msgstr "Bruk naturlig rekkefølge for å sortere tabell- og databasenavn"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:514
msgid "Natural order"
msgstr "Normal rekkefølge"
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
#, fuzzy
#| msgid "Use only icons, only text or both"
msgid "Use only icons, only text or both."
msgstr "Bruk bare ikoner, bare tekst eller begge deler"
-#: libraries/config/messages.inc.php:499
+#: libraries/config/messages.inc.php:516
msgid "Table navigation bar"
msgstr "Tabellbasert navigasjonsområde"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:518
#, fuzzy
#| msgid "use GZip output buffering for increased speed in HTTP transfers"
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr "Bruk GZip utbuffring for økt hastighet i HTTP overføringer"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr "GZip utbuffring"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
#, fuzzy
#| msgid ""
#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
@@ -7025,21 +7106,21 @@ msgstr ""
"[kbd]SMART[/kbd] - dvs. synkende rekkefølge for felter av typen TIME, DATE, "
"DATETIME og TIMESTAMP, ellers stigende rekkefølge"
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr "Standard sorteringsrekkefølge"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
#, fuzzy
#| msgid "Use persistent connections to MySQL databases"
msgid "Use persistent connections to MySQL databases."
msgstr "Bruk vedvarende forbindelser til MySQL databasen"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr "Vedvarende forbindelser"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7053,11 +7134,11 @@ msgstr ""
"Deaktiver varselet som vises på databasedetaljsiden Struktur om det er noen "
"påkrevde tabeller for phpMyAdmins konfigurasjonslager som ikke ble funnet"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
@@ -7069,11 +7150,11 @@ msgstr ""
"Slå av forvalgt advarsel som blir vist hvis mcrypt mangler ved "
"informasjonskapsel autentisering"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -7086,27 +7167,27 @@ msgstr ""
"Deaktiver varselet som vises på databasedetaljsiden Struktur om det er noen "
"påkrevde tabeller for phpMyAdmins konfigurasjonslager som ikke ble funnet"
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr "Hvordan menyfanene vises"
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr "Ikke tillat redigering av BLOB- eller BINARY-kolonner."
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr "Beskytt binære kolonner"
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -7116,53 +7197,53 @@ msgstr ""
"konfigurasjonslagring). Hvis avslått vil historikken mistes når vinduet "
"lukkes, fordi det da brukes JS-rutiner vise den."
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr "Permanent spørringshistorie"
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
#, fuzzy
#| msgid "How many queries are kept in history"
msgid "How many queries are kept in history."
msgstr "Hvor mange spørringer lagres"
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr "Spørringshistorielengde"
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
#, fuzzy
#| msgid "Select which functions will be used for character set conversion"
msgid "Select which functions will be used for character set conversion."
msgstr ""
"Velg hvilken funksjon som vil bli brukt for karaktertegnsettskonverteringer"
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr "Rekodingsmotor"
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
#, fuzzy
#| msgid "When browsing tables, the sorting of each table is remembered"
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
"Ved visning av tabeller vil sorteringen av hver enkelt tabell bli husket"
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr "Husk tabellens sortering"
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
#, fuzzy
#| msgid "Default sorting order"
msgid "Primary key default sort order"
msgstr "Standard sorteringsrekkefølge"
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
#, fuzzy
#| msgid ""
#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@@ -7170,91 +7251,91 @@ msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr "Gjenta topptekst hver n. rad; [kbd]0[/kbd] deaktiverer funksjonen"
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr "Gjenta topptekst"
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
#, fuzzy
#| msgid "Relational display column"
msgid "Relational display"
msgstr "Relasjonsvisningskolonne"
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
#, fuzzy
#| msgid "Servers display options"
msgid "For display Options"
msgstr "Tjenervisningsinnstillinger"
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr "Rutenett - redigering: Lagre alle redigerte celler på en gang"
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
msgstr "Mappe for eksporter kan lagres på tjeneren"
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr "Lagringsmappe"
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
msgstr "La stå tom hvis ikke brukt"
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr "Rekkefølge for vertsautorisering"
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
msgstr "La stå tom for standard"
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr "Regler for vertsautorisering"
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr "Tillat innlogging uten passord"
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr "Tillat innlogging som root"
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
msgstr "Økts verdi"
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
#, fuzzy
#| msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr "HTTP Basic Auth Realm navn for visning ved bruk av HTTP Auth"
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
#, fuzzy
#| msgid ""
#| "The path for the config file for [a@http://swekey.com]SweKey hardware "
@@ -7269,21 +7350,21 @@ msgstr ""
"authentication[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr "SweKey config fil"
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
msgstr "Autentiseringsmetode som skal brukes"
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr "Autentiseringstype"
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
@@ -7291,11 +7372,11 @@ msgstr ""
"La stå tom å slå av [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/"
"a]forslag: [kbd]pma__bookmark[/kbd]"
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr "Bokmerketabell"
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
@@ -7307,35 +7388,35 @@ msgstr ""
"La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: "
"[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr "Kolonneinformasjonstabell"
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
msgstr "Komprimer tilkoblingen til MySQL tjeneren"
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr "Komprimer tilkobling"
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
#, fuzzy
#| msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr "Hvordan koble til tjener, behold [kbd]tcp[/kbd] hvis usikker"
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr "Tilkoblingstype"
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr "Kontrollbrukerpassord"
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
@@ -7349,11 +7430,11 @@ msgstr ""
"informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr "Kontrollbruker"
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7365,11 +7446,11 @@ msgstr ""
"En alternativ vert til å holde konfigurasjonslageret; la være tom for å "
"bruke den allerede definerte verten"
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr "Kontrollvert"
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
@@ -7382,19 +7463,19 @@ msgstr ""
"En alternativ vert til å holde konfigurasjonslageret; la være tom for å "
"bruke den allerede definerte verten"
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
#, fuzzy
#| msgid "Control host"
msgid "Control port"
msgstr "Kontrollvert"
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
msgstr "Skjul databaser som matcher regular expression (PCRE)"
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -7402,15 +7483,15 @@ msgstr ""
"Mer informasjon på [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Slå av bruk av INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr "Skul databaser"
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
@@ -7421,25 +7502,25 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr "SQL spørringshistorietabell"
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
msgstr "Vertsnavn hvor MySQL tjeneren kjører"
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr "Tjenervertsnavn"
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr "Logg ut URL"
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
@@ -7451,17 +7532,17 @@ msgstr ""
"Begrenser antall tabellpreferanser som blir lagret i databasen, de eldste "
"postene blir automatisk slettet"
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr "Maksimalt antall tabellpreferanser som lagres"
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
msgstr "Se slavestatustabell"
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7471,13 +7552,13 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Central columns table"
msgstr "CHAR textarea kolonner"
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7488,17 +7569,17 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
msgstr "Forsøk å koble til uten passord"
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr "Koble til uten passord"
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
#, fuzzy
#| msgid ""
#| "You can use MySQL wildcard characters (% and _), escape them if you want "
@@ -7517,21 +7598,21 @@ msgstr ""
"å bruke dem som vanlige karakterer, f.eks. bruk [kbd]'my\\_db'[/kbd] og ikke "
"[kbd]'my_db'[/kbd] for å vise et understrek tegn."
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr "Vis kun opplistede databaser"
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
msgstr "La stå tom om du ikke skal bruke config autentisering"
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr "Passord for config autentisering"
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -7540,11 +7621,11 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr "PDF schema: sidetabell"
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
@@ -7559,22 +7640,22 @@ msgstr ""
"wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for komplett informasjon. La stå "
"blank for å slå av. Anbefalt: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr "Databasenavn"
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr "Porten som MySQL tjeneren lytter på, la stå tom for standard verdi"
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr "Tjenerport"
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7584,11 +7665,11 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr "Nylig brukt tabell"
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7598,13 +7679,13 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "Favorite tables"
msgid "Favorites table"
msgstr "Favorittabeller"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
@@ -7616,11 +7697,11 @@ msgstr ""
"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/"
"relation]relasjonslink[/a]støtte, anbefalt: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr "Relasjonstabell"
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
@@ -7632,35 +7713,35 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/"
"a] for et eksempel"
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr "Signon sesjonsnavn"
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr "Innloggingslink"
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr "Sokkel som MySQL tjeneren lytter på, la stå tom for standard verdi"
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr "Tjenersokkel"
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
msgstr "Slå på SSL for tilkobling til MySQL tjener"
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr "Bruk SSL"
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
@@ -7671,13 +7752,13 @@ msgid ""
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
#, fuzzy
#| msgid "PDF schema: table coordinates"
msgid "Designer and PDF schema: table coordinates"
msgstr "PDF schema: tabellkoordinater"
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
@@ -7689,11 +7770,11 @@ msgstr ""
"Tabell for beskrivelse av visningskolonner, la stå tom for ingen støtte; "
"anbefalt: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr "Visningskolonnetabell"
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7703,11 +7784,11 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr "Tabell for UI preferanser"
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -7715,11 +7796,11 @@ msgstr ""
"Om en DROP DATABASE IF EXISTS spørring skal bli lagt til som første linje i "
"loggen når oppretter en database."
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr "Legg til DROP DATABASE"
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -7727,11 +7808,11 @@ msgstr ""
"Om en DROP TABLE IF EXISTS spørring vil bli lagt til som første linje til "
"loggen når oppretter en tabell."
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr "Legg til DROP TABLE"
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -7739,20 +7820,20 @@ msgstr ""
"Om en DROP VIEW IF EXISTS spørring vil bli lagt til som første linje i "
"loggen når opprettes en visning."
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr "Legg til DROP VIEW"
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definerer lista med spørringer autoopprettinga bruker for nye versjoner."
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr "Spørringer som skal spores"
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
@@ -7763,11 +7844,11 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr "SQL spørringssporingstabell"
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -7775,11 +7856,11 @@ msgstr ""
"Om sporingsmekanismen oppretter versjoner for tabeller og visninger "
"automatisk."
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr "Automatisk opprette versjoner"
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7789,37 +7870,37 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr "Tabell for lagring av brukerpreferanser"
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
#, fuzzy
#| msgid "Use Tables"
msgid "Users table"
msgstr "Bruk tabeller"
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
#, fuzzy
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Vis vert tabell"
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -7829,15 +7910,15 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr "Bruker for config autentisering"
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -7845,21 +7926,21 @@ msgstr ""
"En brukervennlig beskrivelse av denne tjeneren. La stå tom for visning av "
"vertsnavn istedet."
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr "Fult navn for denne tjeneren"
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
#, fuzzy
#| msgid "Whether a user should be displayed a \"show all (rows)\" button"
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr "Avgjør om en bruker får en \"vis alle (rader)\" knapp"
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr "Tillat visning av alle rader"
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
#, fuzzy
#| msgid ""
#| "Please note that enabling this has no effect with [kbd]config[/kbd] "
@@ -7875,85 +7956,85 @@ msgstr ""
"autentiseringsmodus siden passordet er hardkodet i konfigurasjonsfila; dette "
"begrenser ikke muligheten til å utføre samme kommando direkte"
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr "Vis passordendringsskjema"
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr "Vis opprett database skjema"
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments"
msgid "Show table comments"
msgstr "Tabellkommentarer"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Vis versjoner"
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Vis masterstatus"
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr "Vis felttyper"
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
#, fuzzy
#| msgid "Display the function fields in edit/insert mode"
msgid "Display the function fields in edit/insert mode."
msgstr "Vis funksjonsfelter i rediger/sett inn modus"
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr "Vis funksjonsfelter"
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
#, fuzzy
#| msgid "Whether to show hint or not"
msgid "Whether to show hint or not."
msgstr "Om hint skal vises eller ikke"
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr "Vis hint"
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
#, fuzzy
#| msgid ""
#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
@@ -7965,15 +8046,15 @@ msgstr ""
"Vis link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"resultat"
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr "Vis phpinfo() link"
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr "Vis detaljert MySQL tjenerinformasjon"
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
#, fuzzy
#| msgid ""
#| "Defines whether SQL queries generated by phpMyAdmin should be displayed"
@@ -7981,32 +8062,32 @@ msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr "Definer om SQL spørringer generert av phpMyAdmin skal vises"
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr "Vis SQL spørringer"
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Skjul spørringsboks"
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
#, fuzzy
#| msgid "Allow to display database and table statistics (eg. space usage)"
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr "Tillat visning av database og tabellstatistikk (f.eks. lagringsbruk)"
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr "Vis statistikk"
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
#, fuzzy
#| msgid ""
#| "Mark used tables and make it possible to show databases with locked tables"
@@ -8015,11 +8096,11 @@ msgid ""
msgstr ""
"Merk tabeller i bruk og gjør det mulig å vise databaser med låste tabeller"
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr "Ignorer låste tabeller"
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
#, fuzzy
#| msgid "A warning is displayed on the main page if Suhosin is detected"
msgid ""
@@ -8027,11 +8108,11 @@ msgid ""
"detected."
msgstr "En advarsel vises på hovedsiden dersom Suhosin er oppdaget"
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed on the database details "
@@ -8045,65 +8126,65 @@ msgstr ""
"Deaktiver varselet som vises på databasedetaljsiden Struktur om det er noen "
"påkrevde tabeller for phpMyAdmins konfigurasjonslager som ikke ble funnet"
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
#, fuzzy
#| msgid "Login cookie validity"
msgid "Login cookie validity warning"
msgstr "Innloggings cookie gyldighet"
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR textarea kolonner"
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR textarea rader"
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a database is selected."
msgstr "Navn på nettleser når en tjener er valgt"
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when nothing is selected."
msgstr "Navn på nettleser når en tjener er valgt"
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr "Forvalgt tittel"
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a server is selected."
msgstr "Navn på nettleser når en tjener er valgt"
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
#, fuzzy
#| msgid "Title of browser window when a server is selected"
msgid "Title of browser window when a table is selected."
msgstr "Navn på nettleser når en tjener er valgt"
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
#, fuzzy
#| msgid ""
#| "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following "
@@ -8121,56 +8202,56 @@ msgstr ""
"Forwarded-For) header som kommer fra mellomlager 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste over godkjente mellomlager for IP allow/deny"
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
#, fuzzy
#| msgid "Directory on server where you can upload files for import"
msgid "Directory on server where you can upload files for import."
msgstr "Mappe på tjeneren hvor du kan laste opp filer for import"
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr "Opplastingsmappe"
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
#, fuzzy
#| msgid "Allow for searching inside the entire database"
msgid "Allow for searching inside the entire database."
msgstr "Gjør det mulig å søke i hele databasen"
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr "Bruk databasesøk"
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr "Sjekk for siste versjon"
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr "Versjonskontroll"
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -8178,34 +8259,34 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
#, fuzzy
#| msgid "Username"
msgid "Proxy username"
msgstr "Brukernavn"
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
#, fuzzy
#| msgid "Password"
msgid "Proxy password"
msgstr "Passord"
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
@@ -8217,53 +8298,53 @@ msgstr ""
"Slå på [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-"
"komprimering for import og eksportoperasjoner"
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr "ZIP"
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
#, fuzzy
#| msgid "Server port"
msgid "Send error reports"
msgstr "Tjenerport"
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
#, fuzzy
#| msgid "Server configuration"
msgid "Enable Zero Configuration mode"
@@ -8293,46 +8374,46 @@ msgstr "HTTP autentisering"
msgid "Signon authentication"
msgstr "Rekkefølge for vertsautentisering"
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr "CSV med LOAD DATA"
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "OpenDocument Spreadsheet"
msgstr "Open Document regneark"
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr "Rask"
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr "Egendefinert"
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr "Databaseeksportinnstillinger"
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr "CSV for MS Excel data"
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
#, fuzzy
#| msgid "Open Document Text"
msgid "OpenDocument Text"
@@ -8363,7 +8444,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
#, fuzzy
#| msgid "Could not load import plugins, please check your installation!"
msgid "Could not load schema plugins, please check your installation!"
@@ -8436,7 +8517,7 @@ msgstr "Opprett tabell"
msgid "Number of columns"
msgstr "Antall kolonner"
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr "Kunne ikke laste eksporttillegg, kontroller din innstallasjon!"
@@ -8479,11 +8560,11 @@ msgstr "Tabell(er):"
msgid "Format:"
msgstr "Format:"
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr "Formatspesifike valg:"
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
@@ -8491,52 +8572,52 @@ msgstr ""
"Bla ned for å fylle ut valgene for det valgte formatet og ignorere valgene "
"for andre formater."
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr "Kodingskonvertering:"
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr "Rader:"
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr "Dump (noen) rad(er)"
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr "Start med rad:"
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr "Dump alle rader"
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr "Utskrift:"
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr "Lagre på server i %s katalogen"
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr "Filnavn mal:"
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr "@SERVER@ vil bli tjenernavnet"
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ", @DATABASE@ vil bli databasenavnet"
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ", @TABLE@ vil bli tabellnavnet"
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, fuzzy, php-format
#| msgid ""
#| "alue is interpreted using %1$sstrftime%2$s, so you can use time matting "
@@ -8551,72 +8632,84 @@ msgstr ""
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
"All annen tekst beholdes som den er."
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr "Filens tegnsett:"
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr "Komprimering:"
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr "Pakket (zip)"
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr "gzippet"
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr "Vis utskrift som tekst"
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+#, fuzzy
+#| msgid "Export views as tables"
+msgid "Export databases as separate files"
+msgstr "Eksporter views som tabeller"
+
+#: libraries/display_export.lib.php:662
+#, fuzzy
+#| msgid "horizontal (rotated headers)"
+msgid "Export tables as separate files"
+msgstr "horisontal (roterte overskrifter)"
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr "Lagre utdata til fil"
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
#, fuzzy
#| msgid "Select Tables"
msgid "Select database"
msgstr "Velg tabeller"
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
#, fuzzy
#| msgid "Select Tables"
msgid "Select table"
msgstr "Velg tabeller"
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr "Databasenavn"
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
#, fuzzy
#| msgid "User name"
msgid "New table name"
msgstr "Brukernavn"
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
#, fuzzy
#| msgid "Copy column name"
msgid "Old column name"
msgstr "Kopier kolonnenavn"
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
#, fuzzy
#| msgid "Copy column name"
msgid "New column name"
@@ -9258,7 +9351,7 @@ msgid "Create an index on %s columns"
msgstr "Lag en indeks på %s kolonner"
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr "Skjul"
@@ -9405,11 +9498,6 @@ msgstr "Fre"
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr "Send"
-
#: libraries/mult_submits.lib.php:386
#, fuzzy
#| msgid "Apply index(s)"
@@ -9631,29 +9719,35 @@ msgstr ""
#: libraries/navigation/Navigation.class.php:192
#, fuzzy
+#| msgid "Column names: "
+msgid "Groups:"
+msgstr "Kolonnenavn: "
+
+#: libraries/navigation/Navigation.class.php:193
+#, fuzzy
#| msgid "Events"
msgid "Events:"
msgstr "Hendelser"
-#: libraries/navigation/Navigation.class.php:193
+#: libraries/navigation/Navigation.class.php:194
#, fuzzy
#| msgid "Functions"
msgid "Functions:"
msgstr "Funsjoner"
-#: libraries/navigation/Navigation.class.php:194
+#: libraries/navigation/Navigation.class.php:195
#, fuzzy
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Prosedyrer"
-#: libraries/navigation/Navigation.class.php:195
+#: libraries/navigation/Navigation.class.php:196
#, fuzzy
#| msgid "Tables"
msgid "Tables:"
msgstr "Tabeller"
-#: libraries/navigation/Navigation.class.php:196
+#: libraries/navigation/Navigation.class.php:197
#, fuzzy
#| msgid "Views"
msgid "Views:"
@@ -9683,37 +9777,37 @@ msgstr "Navigasjonspanel"
msgid "Reload navigation panel"
msgstr "Endre navigasjonsrammen"
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter databases by name or regex"
msgstr "Endre tabellrekkefølge ved"
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr "Fjern hurtigfilter"
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter by name or regex"
msgstr "Endre tabellrekkefølge ved"
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -9749,7 +9843,7 @@ msgstr ""
msgid "Database operations"
msgstr "Databaseeksportinnstillinger"
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
#, fuzzy
#| msgid "Show hint"
msgid "Show hidden items"
@@ -11017,26 +11111,26 @@ msgstr "Kolonnenavn: "
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr "Ugyldig parameter for CSV import: %s"
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr "Ugyldig format i CSV importen i linje %d."
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr "Ugyldig antall kolonner i CSV importen i linje %d."
@@ -11457,63 +11551,63 @@ msgstr "Formaterer tekst som en SQL spørring med syntaksutheving."
msgid "Formats text as XML with syntax highlighting."
msgstr "Formaterer tekst som en SQL spørring med syntaksutheving."
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr "Feil: relasjoner eksisterer allerede."
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been added."
msgstr "FOREIGN KEY relasjon lagt til"
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr "Feil: Relasjon ikke opprettet."
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
msgstr "Feil: Relasjon ikke opprettet."
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been added."
msgstr "Intern relasjon lagt til"
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be added!"
msgstr "Feil: Relasjon ikke opprettet."
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
#, fuzzy
#| msgid "FOREIGN KEY relation added"
msgid "FOREIGN KEY relation has been removed."
msgstr "FOREIGN KEY relasjon lagt til"
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr "Feil: Relasjon ikke opprettet."
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Internal relation could not be removed!"
msgstr "Feil: Relasjon ikke opprettet."
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
#, fuzzy
#| msgid "Internal relation added"
msgid "Internal relation has been removed."
@@ -11618,11 +11712,17 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+#, fuzzy
+#| msgid "Remember table's sorting"
+msgid "Remembering Designer Settings"
+msgstr "Husk tabellens sortering"
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr "Raske steg for å sette opp avansert funksjonalitet:"
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, fuzzy, php-format
#| msgid ""
#| "Create the needed tables with the examples/create_tables.sql."
@@ -11630,11 +11730,11 @@ msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
"Opprett nødvendige tabeller med examples/create_tables.sql."
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr "Opprett en pma bruker og gi tilgang til disse tabellene."
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
@@ -11642,23 +11742,23 @@ msgstr ""
"Slå på avansert funksjonalitet i konfigurasjonsfilen (config.inc.php"
"code>), f.eks. med eksempel fra config.sample.inc.php."
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
"Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila."
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr "ingen beskrivelse"
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
@@ -11666,14 +11766,14 @@ msgid ""
"configuration storage there."
msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller"
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller"
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, fuzzy, php-format
#| msgid "Missing phpMyAdmin configuration storage tables"
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
@@ -12541,7 +12641,7 @@ msgstr "Det er ingen filer å laste opp"
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
#, fuzzy
#| msgid "Current Server"
msgid "Current Server:"
@@ -17542,9 +17642,6 @@ msgstr "concurrent_insert er satt til 0"
#~ msgid "Delete tracking data for this table"
#~ msgstr "Slett overvåkningsdata for denne tabellen"
-#~ msgid "Show versions"
-#~ msgstr "Vis versjoner"
-
#, fuzzy
#~| msgid "Table structure"
#~ msgid "Table Structure"
@@ -18728,9 +18825,6 @@ msgstr "concurrent_insert er satt til 0"
#~ msgid "Reset"
#~ msgstr "Tilbakestill"
-#~ msgid "Show processes"
-#~ msgstr "Vis prosesser"
-
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Tilbakestill"
diff --git a/po/ne.po b/po/ne.po
index 6e4c7e0ab9..754b072af3 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2014-08-26 15:28+0200\n"
"Last-Translator: Nabin Ghimire
to toggle column's visibility."
msgstr ""
-#: js/messages.php:484 libraries/DisplayResults.class.php:1007
+#: js/messages.php:485 libraries/DisplayResults.class.php:1007
#: libraries/browse_foreigners.lib.php:290
#: libraries/browse_foreigners.lib.php:343
#: libraries/server_privileges.lib.php:3466
msgid "Show all"
msgstr ""
-#: js/messages.php:485
+#: js/messages.php:486
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:486
+#: js/messages.php:487
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
-#: js/messages.php:487
+#: js/messages.php:488
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
-#: js/messages.php:488
+#: js/messages.php:489
msgid "Original length"
msgstr ""
-#: js/messages.php:491
+#: js/messages.php:492
msgid "cancel"
msgstr ""
-#: js/messages.php:492 libraries/server_status.lib.php:269
+#: js/messages.php:493 libraries/server_status.lib.php:269
msgid "Aborted"
msgstr ""
-#: js/messages.php:494
+#: js/messages.php:495
msgid "Success"
msgstr ""
-#: js/messages.php:495
+#: js/messages.php:496
msgid "Import status"
msgstr ""
-#: js/messages.php:496 libraries/navigation/Navigation.class.php:112
+#: js/messages.php:497 libraries/navigation/Navigation.class.php:112
msgid "Drop files here"
msgstr ""
-#: js/messages.php:497
+#: js/messages.php:498
msgid "Select database first"
msgstr ""
-#: js/messages.php:502
+#: js/messages.php:503
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-#: js/messages.php:505
+#: js/messages.php:506
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-#: js/messages.php:510
+#: js/messages.php:511
msgid "Go to link:"
msgstr ""
-#: js/messages.php:511
+#: js/messages.php:512
msgid "Copy column name."
msgstr ""
-#: js/messages.php:512
+#: js/messages.php:513
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:515
+#: js/messages.php:516
msgid "Generate password"
msgstr ""
-#: js/messages.php:516 libraries/replication_gui.lib.php:894
+#: js/messages.php:517 libraries/replication_gui.lib.php:894
msgid "Generate"
msgstr ""
-#: js/messages.php:517
+#: js/messages.php:518
msgid "Change Password"
msgstr ""
-#: js/messages.php:520
+#: js/messages.php:521
msgid "More"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:524
msgid "Show Panel"
msgstr ""
-#: js/messages.php:524
+#: js/messages.php:525
msgid "Hide Panel"
msgstr ""
-#: js/messages.php:525
+#: js/messages.php:526
msgid "Show hidden navigation tree items."
msgstr ""
-#: js/messages.php:526 libraries/config/messages.inc.php:441
-#: libraries/navigation/NavigationTree.class.php:1368
+#: js/messages.php:527 libraries/config/messages.inc.php:443
+#: libraries/navigation/NavigationTree.class.php:1398
msgid "Link with main panel"
msgstr ""
-#: js/messages.php:527 libraries/navigation/NavigationTree.class.php:1371
+#: js/messages.php:528 libraries/navigation/NavigationTree.class.php:1401
msgid "Unlink from main panel"
msgstr ""
-#: js/messages.php:528
+#: js/messages.php:529
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
-#: js/messages.php:529
+#: js/messages.php:530
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
-#: js/messages.php:530
+#: js/messages.php:531
#, fuzzy
#| msgid "Table"
msgid "tables"
msgstr "टेबल"
-#: js/messages.php:531
+#: js/messages.php:532
msgid "views"
msgstr ""
-#: js/messages.php:532
+#: js/messages.php:533
msgid "procedures"
msgstr ""
-#: js/messages.php:533
+#: js/messages.php:534
msgid "events"
msgstr ""
-#: js/messages.php:534
+#: js/messages.php:535
#, fuzzy
#| msgid "Action"
msgid "functions"
msgstr "कार्य"
-#: js/messages.php:537
+#: js/messages.php:538
msgid "The requested page was not found in the history, it may have expired."
msgstr ""
-#: js/messages.php:540 setup/lib/index.lib.php:160
+#: js/messages.php:541 setup/lib/index.lib.php:160
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2378,439 +2421,439 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:542
+#: js/messages.php:543
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:543
+#: js/messages.php:544
msgid "up to date"
msgstr ""
-#: js/messages.php:545 libraries/DisplayResults.class.php:4959
+#: js/messages.php:546 libraries/DisplayResults.class.php:4959
#: view_create.php:182
msgid "Create view"
msgstr ""
-#: js/messages.php:548
+#: js/messages.php:549
msgid "Send Error Report"
msgstr ""
-#: js/messages.php:549
+#: js/messages.php:550
msgid "Submit Error Report"
msgstr ""
-#: js/messages.php:551
+#: js/messages.php:552
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
msgstr ""
-#: js/messages.php:553
+#: js/messages.php:554
msgid "Change Report Settings"
msgstr ""
-#: js/messages.php:554
+#: js/messages.php:555
msgid "Show Report Details"
msgstr ""
-#: js/messages.php:557
+#: js/messages.php:558
msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
-#: js/messages.php:561
+#: js/messages.php:562
#, php-format
msgid ""
"Warning: a form on this page has more than %d fields. On submission, some of "
"the fields might be ignored, due to PHP's max_input_vars configuration."
msgstr ""
-#: js/messages.php:567 js/messages.php:579
+#: js/messages.php:568 js/messages.php:580
msgid "Some errors have been detected on the server!"
msgstr ""
-#: js/messages.php:569
+#: js/messages.php:570
msgid "Please look at the bottom of this window."
msgstr ""
-#: js/messages.php:574 libraries/Error_Handler.class.php:350
+#: js/messages.php:575 libraries/Error_Handler.class.php:350
msgid "Ignore All"
msgstr ""
-#: js/messages.php:581
+#: js/messages.php:582
msgid ""
"As per your settings, they are being submitted currently, please be patient."
msgstr ""
-#: js/messages.php:589
+#: js/messages.php:590
msgid "Execute this query again?"
msgstr ""
-#: js/messages.php:590
+#: js/messages.php:591
msgid "Do you really want to delete this bookmark?"
msgstr ""
-#: js/messages.php:591
-msgid "Some error occurred while getting SQL debug info."
-msgstr ""
-
#: js/messages.php:592
-#, php-format
-msgid "%s queries executed %s times in %s seconds."
+msgid "Some error occurred while getting SQL debug info."
msgstr ""
#: js/messages.php:593
#, php-format
-msgid "%s argument(s) passed"
+msgid "%s queries executed %s times in %s seconds."
msgstr ""
#: js/messages.php:594
+#, php-format
+msgid "%s argument(s) passed"
+msgstr ""
+
+#: js/messages.php:595
#, fuzzy
#| msgid "Table comments:"
msgid "Show arguments"
msgstr "टेबलको टिप्पणीहरु:"
-#: js/messages.php:595
+#: js/messages.php:596
msgid "Hide arguments"
msgstr ""
-#: js/messages.php:596 libraries/Console.class.php:318
+#: js/messages.php:597 libraries/Console.class.php:318
msgid "Time taken:"
msgstr ""
-#: js/messages.php:597
+#: js/messages.php:598
msgid ""
"Your web browser does not support local storage of settings or the quota "
"limit has been reached, some features may not work properly for you. In "
"Safari, such problem is commonly caused by \"Private Mode Browsing\"."
msgstr ""
-#: js/messages.php:625
+#: js/messages.php:626
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:630
+#: js/messages.php:631
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:633
+#: js/messages.php:634
msgid "Today"
msgstr ""
-#: js/messages.php:637
+#: js/messages.php:638
msgid "January"
msgstr ""
-#: js/messages.php:638
+#: js/messages.php:639
msgid "February"
msgstr ""
-#: js/messages.php:639
+#: js/messages.php:640
msgid "March"
msgstr ""
-#: js/messages.php:640
+#: js/messages.php:641
msgid "April"
msgstr ""
-#: js/messages.php:641
+#: js/messages.php:642
msgid "May"
msgstr ""
-#: js/messages.php:642
+#: js/messages.php:643
msgid "June"
msgstr ""
-#: js/messages.php:643
+#: js/messages.php:644
msgid "July"
msgstr ""
-#: js/messages.php:644
+#: js/messages.php:645
msgid "August"
msgstr ""
-#: js/messages.php:645
+#: js/messages.php:646
msgid "September"
msgstr ""
-#: js/messages.php:646
+#: js/messages.php:647
msgid "October"
msgstr ""
-#: js/messages.php:647
+#: js/messages.php:648
msgid "November"
msgstr ""
-#: js/messages.php:648
+#: js/messages.php:649
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:655 libraries/Util.class.php:1623
+#: js/messages.php:656 libraries/Util.class.php:1623
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:657 libraries/Util.class.php:1625
+#: js/messages.php:658 libraries/Util.class.php:1625
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:659 libraries/Util.class.php:1627
+#: js/messages.php:660 libraries/Util.class.php:1627
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:661 libraries/Util.class.php:1629
+#: js/messages.php:662 libraries/Util.class.php:1629
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:663 libraries/Util.class.php:1631
+#: js/messages.php:664 libraries/Util.class.php:1631
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:665 libraries/Util.class.php:1633
+#: js/messages.php:666 libraries/Util.class.php:1633
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:667 libraries/Util.class.php:1635
+#: js/messages.php:668 libraries/Util.class.php:1635
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:669 libraries/Util.class.php:1637
+#: js/messages.php:670 libraries/Util.class.php:1637
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:671 libraries/Util.class.php:1639
+#: js/messages.php:672 libraries/Util.class.php:1639
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:673 libraries/Util.class.php:1641
+#: js/messages.php:674 libraries/Util.class.php:1641
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:675 libraries/Util.class.php:1643
+#: js/messages.php:676 libraries/Util.class.php:1643
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:677 libraries/Util.class.php:1645
+#: js/messages.php:678 libraries/Util.class.php:1645
msgid "Dec"
msgstr ""
-#: js/messages.php:683
+#: js/messages.php:684
msgid "Sunday"
msgstr ""
-#: js/messages.php:684
+#: js/messages.php:685
msgid "Monday"
msgstr ""
-#: js/messages.php:685
+#: js/messages.php:686
msgid "Tuesday"
msgstr ""
-#: js/messages.php:686
+#: js/messages.php:687
msgid "Wednesday"
msgstr ""
-#: js/messages.php:687
+#: js/messages.php:688
msgid "Thursday"
msgstr ""
-#: js/messages.php:688
+#: js/messages.php:689
msgid "Friday"
msgstr ""
-#: js/messages.php:689
+#: js/messages.php:690
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:696
+#: js/messages.php:697
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:698 libraries/Util.class.php:1650
+#: js/messages.php:699 libraries/Util.class.php:1650
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:700 libraries/Util.class.php:1652
+#: js/messages.php:701 libraries/Util.class.php:1652
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:702 libraries/Util.class.php:1654
+#: js/messages.php:703 libraries/Util.class.php:1654
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:704 libraries/Util.class.php:1656
+#: js/messages.php:705 libraries/Util.class.php:1656
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:706 libraries/Util.class.php:1658
+#: js/messages.php:707 libraries/Util.class.php:1658
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:708 libraries/Util.class.php:1660
+#: js/messages.php:709 libraries/Util.class.php:1660
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:715
+#: js/messages.php:716
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:717
+#: js/messages.php:718
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:719
+#: js/messages.php:720
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:721
+#: js/messages.php:722
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:723
+#: js/messages.php:724
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:725
+#: js/messages.php:726
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:727
+#: js/messages.php:728
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:731
+#: js/messages.php:732
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year"
#. * or "calendar-year-month".
#.
-#: js/messages.php:738
+#: js/messages.php:739
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:741
+#: js/messages.php:742
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:753
+#: js/messages.php:754
msgid "Hour"
msgstr ""
-#: js/messages.php:754
+#: js/messages.php:755
msgid "Minute"
msgstr ""
-#: js/messages.php:755
+#: js/messages.php:756
msgid "Second"
msgstr ""
-#: js/messages.php:766
+#: js/messages.php:767
msgid "This field is required"
msgstr ""
-#: js/messages.php:767
+#: js/messages.php:768
msgid "Please fix this field"
msgstr ""
-#: js/messages.php:768
+#: js/messages.php:769
msgid "Please enter a valid email address"
msgstr ""
-#: js/messages.php:769
+#: js/messages.php:770
msgid "Please enter a valid URL"
msgstr ""
-#: js/messages.php:770
+#: js/messages.php:771
msgid "Please enter a valid date"
msgstr ""
-#: js/messages.php:771
+#: js/messages.php:772
msgid "Please enter a valid date ( ISO )"
msgstr ""
-#: js/messages.php:772
+#: js/messages.php:773
msgid "Please enter a valid number"
msgstr ""
-#: js/messages.php:773
+#: js/messages.php:774
msgid "Please enter a valid credit card number"
msgstr ""
-#: js/messages.php:774
+#: js/messages.php:775
msgid "Please enter only digits"
msgstr ""
-#: js/messages.php:775
+#: js/messages.php:776
msgid "Please enter the same value again"
msgstr ""
-#: js/messages.php:776
+#: js/messages.php:777
msgid "Please enter no more than {0} characters"
msgstr ""
-#: js/messages.php:777
+#: js/messages.php:778
msgid "Please enter at least {0} characters"
msgstr ""
-#: js/messages.php:778
+#: js/messages.php:779
msgid "Please enter a value between {0} and {1} characters long"
msgstr ""
-#: js/messages.php:779
+#: js/messages.php:780
msgid "Please enter a value between {0} and {1}"
msgstr ""
-#: js/messages.php:780
+#: js/messages.php:781
msgid "Please enter a value less than or equal to {0}"
msgstr ""
-#: js/messages.php:781
+#: js/messages.php:782
msgid "Please enter a value greater than or equal to {0}"
msgstr ""
-#: js/messages.php:783
+#: js/messages.php:784
msgid "Please enter a valid date or time"
msgstr ""
-#: js/messages.php:784
+#: js/messages.php:785
msgid "Please enter a valid HEX input"
msgstr ""
-#: js/messages.php:785 libraries/Message.class.php:199
+#: js/messages.php:786 libraries/Message.class.php:199
#: libraries/Util.class.php:627 libraries/core.lib.php:245
#: libraries/import.lib.php:183 libraries/insert_edit.lib.php:1166
#: tbl_operations.php:228 view_operations.php:63
@@ -2881,16 +2924,16 @@ msgstr ""
msgid "per day"
msgstr ""
-#: libraries/Config.class.php:1196
+#: libraries/Config.class.php:1199
#, php-format
msgid "Existing configuration file (%s) is not readable."
msgstr ""
-#: libraries/Config.class.php:1226
+#: libraries/Config.class.php:1229
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1811
+#: libraries/Config.class.php:1814
msgid "Font size"
msgstr ""
@@ -2909,7 +2952,7 @@ msgid "Requery"
msgstr ""
#: libraries/Console.class.php:91 libraries/Console.class.php:220
-#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:792
+#: libraries/Menu.class.php:218 libraries/config/messages.inc.php:809
#: libraries/plugins/export/ExportHtmlword.class.php:149
#: libraries/plugins/export/ExportOdt.class.php:193
#: libraries/plugins/export/ExportTexytext.class.php:133
@@ -3089,7 +3132,7 @@ msgid "Count:"
msgstr ""
#: libraries/Console.class.php:332 libraries/Util.class.php:1263
-#: libraries/config/messages.inc.php:779
+#: libraries/config/messages.inc.php:796
#: libraries/server_status_processes.lib.php:251
#: libraries/server_status_variables.lib.php:42
msgid "Refresh"
@@ -3260,25 +3303,25 @@ msgstr ""
msgid "Delete bookmark"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2446
+#: libraries/DatabaseInterface.class.php:2449
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2451
+#: libraries/DatabaseInterface.class.php:2454
msgid "The server is not responding."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2456
+#: libraries/DatabaseInterface.class.php:2459
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/DatabaseInterface.class.php:2466
+#: libraries/DatabaseInterface.class.php:2469
msgid "Details…"
msgstr ""
-#: libraries/DatabaseInterface.class.php:2689
+#: libraries/DatabaseInterface.class.php:2692
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
@@ -3352,6 +3395,16 @@ msgstr ""
msgid "Inside tables:"
msgstr ""
+#: libraries/DbSearch.class.php:446 libraries/display_export.lib.php:44
+#: libraries/replication_gui.lib.php:373
+msgid "Select All"
+msgstr "सबै चयन गर्नुहोस"
+
+#: libraries/DbSearch.class.php:450 libraries/display_export.lib.php:50
+#: libraries/replication_gui.lib.php:375
+msgid "Unselect All"
+msgstr "सबै परित्याग गर्नुहोस"
+
#: libraries/DbSearch.class.php:455
msgid "Inside column:"
msgstr ""
@@ -3405,7 +3458,7 @@ msgid "All"
msgstr ""
#: libraries/DisplayResults.class.php:1116
-#: libraries/display_export.lib.php:338
+#: libraries/display_export.lib.php:349
#: templates/startAndNumberOfRowsPanel.phtml:10
msgid "Number of rows:"
msgstr ""
@@ -3697,7 +3750,7 @@ msgid ""
msgstr ""
#: libraries/Menu.class.php:199 libraries/ServerStatusData.class.php:430
-#: libraries/config/messages.inc.php:796
+#: libraries/config/messages.inc.php:813
msgid "Server"
msgstr ""
@@ -3708,34 +3761,13 @@ msgstr ""
msgid "View"
msgstr ""
-#: libraries/Menu.class.php:315 libraries/Menu.class.php:423
-#: libraries/Util.class.php:3353 libraries/Util.class.php:3363
-#: libraries/Util.class.php:3369 libraries/Util.class.php:3673
-#: libraries/Util.class.php:4404 libraries/Util.class.php:4421
-#: libraries/central_columns.lib.php:730 libraries/config.values.php:39
-#: libraries/config.values.php:47 libraries/config.values.php:109
-#: libraries/config.values.php:115 libraries/config/setup.forms.php:312
-#: libraries/config/setup.forms.php:352 libraries/config/setup.forms.php:378
-#: libraries/config/user_preferences.forms.php:212
-#: libraries/config/user_preferences.forms.php:252
-#: libraries/config/user_preferences.forms.php:278
-#: libraries/import.lib.php:1293
-#: libraries/navigation/Nodes/Node_Column.class.php:42
-#: libraries/navigation/Nodes/Node_Database.class.php:53
-#: libraries/navigation/Nodes/Node_Table.class.php:285
-#: libraries/server_privileges.lib.php:1139 libraries/tracking.lib.php:873
-#: templates/columns_definitions/table_fields_definitions.phtml:3
-#: templates/designer/table_list.phtml:28
-msgid "Structure"
-msgstr ""
-
#: libraries/Menu.class.php:323 libraries/Menu.class.php:427
#: libraries/Menu.class.php:547 libraries/Util.class.php:3354
#: libraries/Util.class.php:3364 libraries/Util.class.php:3370
#: libraries/Util.class.php:4390 libraries/Util.class.php:4405
#: libraries/Util.class.php:4422 libraries/config.values.php:40
#: libraries/config.values.php:48 libraries/config.values.php:110
-#: libraries/config.values.php:116 libraries/config/messages.inc.php:297
+#: libraries/config.values.php:116 libraries/config/messages.inc.php:299
#: libraries/navigation/Nodes/Node_Table.class.php:294
msgid "SQL"
msgstr ""
@@ -3830,8 +3862,8 @@ msgstr ""
#: libraries/Menu.class.php:543 libraries/Util.class.php:4389
#: libraries/config.values.php:103 libraries/config/messages.inc.php:244
-#: libraries/config/messages.inc.php:317
-#: libraries/navigation/NavigationTree.class.php:1209
+#: libraries/config/messages.inc.php:319
+#: libraries/navigation/NavigationTree.class.php:1239
#: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:4104
msgid "Databases"
msgstr ""
@@ -3934,7 +3966,7 @@ msgid "Recent"
msgstr ""
#: libraries/RecentFavoriteTable.class.php:254
-#: libraries/config/messages.inc.php:490
+#: libraries/config/messages.inc.php:507
msgid "Favorite tables"
msgstr ""
@@ -4003,16 +4035,6 @@ msgstr ""
msgid "Sorting"
msgstr ""
-#: libraries/ServerStatusData.class.php:128
-#: libraries/build_html_for_db.lib.php:28
-#: libraries/config/messages.inc.php:250
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:28
-#: libraries/navigation/Nodes/Node_Table_Container.class.php:29
-#: libraries/plugins/export/ExportXml.class.php:120
-#: libraries/structure.lib.php:3240
-msgid "Tables"
-msgstr ""
-
#: libraries/ServerStatusData.class.php:129
msgid "Transaction coordinator"
msgstr ""
@@ -4511,7 +4533,7 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:778
+#: libraries/Util.class.php:1185 libraries/config/messages.inc.php:795
msgid "Explain SQL"
msgstr ""
@@ -4528,7 +4550,7 @@ msgstr ""
msgid "Without PHP Code"
msgstr ""
-#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:780
+#: libraries/Util.class.php:1237 libraries/config/messages.inc.php:797
msgid "Create PHP Code"
msgstr ""
@@ -4641,17 +4663,6 @@ msgstr ""
msgid "Rows"
msgstr "पङ्क्तिहरू"
-#: libraries/build_html_for_db.lib.php:38 libraries/config/setup.forms.php:324
-#: libraries/config/setup.forms.php:360 libraries/config/setup.forms.php:383
-#: libraries/config/setup.forms.php:388
-#: libraries/config/user_preferences.forms.php:224
-#: libraries/config/user_preferences.forms.php:260
-#: libraries/config/user_preferences.forms.php:283
-#: libraries/config/user_preferences.forms.php:288
-#: libraries/server_privileges.lib.php:1138 libraries/structure.lib.php:2402
-msgid "Data"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
#: libraries/server_status.lib.php:296 libraries/structure.lib.php:2424
@@ -4807,7 +4818,7 @@ msgstr ""
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1000
+#: libraries/common.inc.php:1002
#, php-format
msgid ""
"Unable to use timezone %1$s for server %2$d. Please check your configuration "
@@ -4815,24 +4826,24 @@ msgid ""
"currently using the default time zone of the database server."
msgstr ""
-#: libraries/common.inc.php:1032
+#: libraries/common.inc.php:1034
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1126
+#: libraries/common.inc.php:1128
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1158
+#: libraries/common.inc.php:1160
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1165
+#: libraries/common.inc.php:1167
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1174
+#: libraries/common.inc.php:1176
msgid "numeric key detected"
msgstr ""
@@ -5056,7 +5067,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:318
-#: libraries/config/messages.inc.php:555
+#: libraries/config/messages.inc.php:572
msgid "Restore default value"
msgstr ""
@@ -5451,7 +5462,7 @@ msgstr ""
msgid "Maximum execution time"
msgstr ""
-#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:662
+#: libraries/config/messages.inc.php:114 libraries/display_export.lib.php:701
#, php-format
msgid "Use %s statement"
msgstr ""
@@ -5460,7 +5471,7 @@ msgstr ""
msgid "Save as file"
msgstr ""
-#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:117 libraries/config/messages.inc.php:344
msgid "Character set of the file"
msgstr ""
@@ -5487,15 +5498,15 @@ msgstr ""
msgid "Put columns names in the first row"
msgstr ""
-#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:344
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:357
#: libraries/plugins/import/ImportCsv.class.php:137
msgid "Columns enclosed with"
msgstr ""
-#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:345
-#: libraries/config/messages.inc.php:356
-#: libraries/plugins/import/ImportCsv.class.php:144
+#: libraries/config/messages.inc.php:122 libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:358
+#: libraries/plugins/import/ImportCsv.class.php:148
msgid "Columns escaped with"
msgstr ""
@@ -5511,14 +5522,14 @@ msgstr ""
msgid "Remove CRLF characters within columns"
msgstr ""
-#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:349
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:363
#: libraries/plugins/import/ImportCsv.class.php:122
msgid "Columns terminated with"
msgstr ""
-#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:343
-#: libraries/plugins/import/ImportCsv.class.php:153
+#: libraries/config/messages.inc.php:126 libraries/config/messages.inc.php:345
+#: libraries/plugins/import/ImportCsv.class.php:157
msgid "Lines terminated with"
msgstr ""
@@ -5588,7 +5599,7 @@ msgid "Save on server"
msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/messages.inc.php:165
-#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
+#: libraries/display_export.lib.php:414 libraries/display_export.lib.php:449
msgid "Overwrite existing file(s)"
msgstr ""
@@ -5605,8 +5616,8 @@ msgstr ""
msgid "Enclose table and column names with backquotes"
msgstr ""
-#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:370
-#: libraries/display_export.lib.php:299
+#: libraries/config/messages.inc.php:170 libraries/config/messages.inc.php:372
+#: libraries/display_export.lib.php:310
msgid "SQL compatibility mode"
msgstr ""
@@ -5719,15 +5730,15 @@ msgid "Customize browse mode."
msgstr ""
#: libraries/config/messages.inc.php:223 libraries/config/messages.inc.php:225
-#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:254
-#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:256
+#: libraries/config/messages.inc.php:258 libraries/config/messages.inc.php:302
msgid "Customize default options."
msgstr ""
-#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:256
-#: libraries/config/setup.forms.php:335
-#: libraries/config/user_preferences.forms.php:158
-#: libraries/config/user_preferences.forms.php:235
+#: libraries/config/messages.inc.php:224 libraries/config/setup.forms.php:264
+#: libraries/config/setup.forms.php:343
+#: libraries/config/user_preferences.forms.php:165
+#: libraries/config/user_preferences.forms.php:242
msgid "CSV"
msgstr ""
@@ -5755,7 +5766,7 @@ msgstr ""
msgid "Customize default export options."
msgstr ""
-#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:233 libraries/config/messages.inc.php:294
#: setup/frames/menu.inc.php:22
msgid "Features"
msgstr ""
@@ -5800,341 +5811,349 @@ msgstr ""
msgid "Customize appearance of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:248 libraries/select_server.lib.php:47
+#: libraries/config/messages.inc.php:248
+msgid "Navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:249
+msgid "Customize the navigation tree."
+msgstr ""
+
+#: libraries/config/messages.inc.php:250 libraries/select_server.lib.php:46
#: setup/frames/index.inc.php:144
msgid "Servers"
msgstr ""
-#: libraries/config/messages.inc.php:249
+#: libraries/config/messages.inc.php:251
msgid "Servers display options."
msgstr ""
-#: libraries/config/messages.inc.php:251
+#: libraries/config/messages.inc.php:253
msgid "Tables display options."
msgstr ""
-#: libraries/config/messages.inc.php:252 setup/frames/menu.inc.php:25
+#: libraries/config/messages.inc.php:254 setup/frames/menu.inc.php:25
msgid "Main panel"
msgstr ""
-#: libraries/config/messages.inc.php:253
+#: libraries/config/messages.inc.php:255
msgid "Microsoft Office"
msgstr ""
-#: libraries/config/messages.inc.php:257
+#: libraries/config/messages.inc.php:259
msgid "Other core settings"
msgstr ""
-#: libraries/config/messages.inc.php:259
+#: libraries/config/messages.inc.php:261
msgid "Settings that didn't fit anywhere else."
msgstr ""
-#: libraries/config/messages.inc.php:260
+#: libraries/config/messages.inc.php:262
msgid "Page titles"
msgstr ""
-#: libraries/config/messages.inc.php:262
+#: libraries/config/messages.inc.php:264
msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-#: libraries/config/messages.inc.php:266
+#: libraries/config/messages.inc.php:268
msgid "Security"
msgstr ""
-#: libraries/config/messages.inc.php:268
+#: libraries/config/messages.inc.php:270
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL."
msgstr ""
-#: libraries/config/messages.inc.php:271
+#: libraries/config/messages.inc.php:273
msgid "Basic settings"
msgstr ""
-#: libraries/config/messages.inc.php:272
+#: libraries/config/messages.inc.php:274
msgid "Authentication"
msgstr ""
-#: libraries/config/messages.inc.php:273
+#: libraries/config/messages.inc.php:275
msgid "Authentication settings."
msgstr ""
-#: libraries/config/messages.inc.php:274
+#: libraries/config/messages.inc.php:276
msgid "Server configuration"
msgstr ""
-#: libraries/config/messages.inc.php:276
+#: libraries/config/messages.inc.php:278
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for."
msgstr ""
-#: libraries/config/messages.inc.php:279
+#: libraries/config/messages.inc.php:281
msgid "Enter server connection parameters."
msgstr ""
-#: libraries/config/messages.inc.php:280
+#: libraries/config/messages.inc.php:282
msgid "Configuration storage"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:284
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation."
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:288
msgid "Changes tracking"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:290
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:293
msgid "Customize export options"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:295
msgid "Customize import defaults"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:296
msgid "Customize navigation panel"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:297
msgid "Customize main panel"
msgstr ""
-#: libraries/config/messages.inc.php:296 libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:298 libraries/config/messages.inc.php:303
#: setup/frames/menu.inc.php:23
msgid "SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:300
msgid "SQL Query box"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:301
msgid "Customize links shown in SQL Query boxes."
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:304
msgid "SQL queries settings."
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:305
msgid "Startup"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:306
msgid "Customize startup page."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:307
msgid "Database structure"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:309
msgid ""
"Choose which details to show in the database structure (list of tables)."
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:310
#: libraries/plugins/export/ExportPdf.class.php:279
#: libraries/structure.lib.php:3424
msgid "Table structure"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:312
msgid "Settings for the table structure (list of columns)."
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:313
msgid "Tabs"
msgstr ""
-#: libraries/config/messages.inc.php:312
+#: libraries/config/messages.inc.php:314
msgid "Choose how you want tabs to work."
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:315
msgid "Display relational schema"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:317
#: libraries/plugins/schema/SchemaDia.class.php:77
#: libraries/plugins/schema/SchemaPdf.class.php:83
msgid "Paper size"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:320
msgid "Text fields"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:321
msgid "Customize text input fields."
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:322
msgid "Texy! text"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:323
msgid "Customize default options"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:324
msgid "Warnings"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:326
msgid "Disable some of the warnings shown by phpMyAdmin."
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:328
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:331
msgid "GZip"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:332
msgid "Extra parameters for iconv"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:334
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed."
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:337
msgid "Ignore multiple statement errors"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:339
msgid ""
"Allow interrupt of import in case script detects it is close to time limit. "
"This might be a good way to import large files, however it can break "
"transactions."
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:343
msgid "Partial import: allow interrupt"
msgstr ""
-#: libraries/config/messages.inc.php:346 libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:359
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
msgstr ""
-#: libraries/config/messages.inc.php:347 libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:349 libraries/config/messages.inc.php:361
msgid "Add ON DUPLICATE KEY UPDATE"
msgstr ""
-#: libraries/config/messages.inc.php:348 libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:350 libraries/config/messages.inc.php:362
msgid "Update data when duplicate keys found on import"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:353
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available."
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:356
msgid "Format of imported file"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:360
#: libraries/plugins/import/ImportLdi.class.php:78
msgid "Use LOCAL keyword"
msgstr ""
-#: libraries/config/messages.inc.php:362 libraries/config/messages.inc.php:373
-#: libraries/config/messages.inc.php:374
+#: libraries/config/messages.inc.php:364 libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid "Column names in first row"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:365
#: libraries/plugins/import/ImportOds.class.php:83
msgid "Do not import empty rows"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:367
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:369
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:370
msgid "Number of queries to skip from start."
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:371
msgid "Partial import: skip queries"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:374
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:377
msgid "Initial state for sliders"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:378
msgid "How many rows can be inserted at one time."
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:379
msgid "Number of inserted rows"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:381
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:383
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:385
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"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:387
+#: libraries/config/messages.inc.php:389
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:391
msgid ""
"Define whether the previous login should be recalled or not in [kbd]cookie[/"
"kbd] authentication mode."
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:394
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:396
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -6142,1065 +6161,1107 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:401
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:403
msgid "Define how long (in seconds) a login cookie is valid."
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:404
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:406
msgid "Double size of textarea for LONGTEXT columns."
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:407
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:409
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:410
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:428
-#: libraries/config/messages.inc.php:541
+#: libraries/config/messages.inc.php:411 libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:558
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:413
msgid "Maximum number of databases displayed in database list."
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:414
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:416
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:419
msgid "Maximum items on first level"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:421
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:423
msgid "Maximum items in branch"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:425
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, \"Previous\" and \"Next\" links will be shown."
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:429
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:431
msgid "Maximum number of tables displayed in table list."
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:432
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:434
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)."
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:437
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:438
msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:440
msgid "Show databases navigation as tree"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:442
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:444
msgid "Show logo in navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:445
msgid "Display logo"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:447
msgid "URL where logo in the navigation panel will point to."
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:448
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:450
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])."
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:453
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:455
msgid "Display server choice at the top of the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:456
msgid "Display servers selection"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:457
msgid "Target for quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:459
msgid "Target for second quick access icon"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:462
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:466
msgid "Minimum number of items to display the filter box"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:468
msgid "Minimum number of databases to display the database filter box"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:470
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:472
msgid "Group items in the tree"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:474
msgid "String that separates databases into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:475
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:477
msgid "String that separates tables into different tree levels."
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:478
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:479
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:479
+#: libraries/config/messages.inc.php:481
msgid "Highlight server under the mouse cursor."
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:482
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:484
msgid ""
"Whether to offer the possibility of tree expansion in the navigation panel."
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:486
msgid "Enable navigation tree expansion"
msgstr ""
-#: libraries/config/messages.inc.php:486
-msgid "Maximum number of recently used tables; set 0 to disable."
-msgstr ""
-
-#: libraries/config/messages.inc.php:488
-msgid "Maximum number of favorite tables; set 0 to disable."
-msgstr ""
+#: libraries/config/messages.inc.php:487
+#, fuzzy
+#| msgid "Table comments:"
+msgid "Show tables in tree"
+msgstr "टेबलको टिप्पणीहरु:"
#: libraries/config/messages.inc.php:489
-msgid "Recently used tables"
+msgid "Whether to show tables under database in the navigation tree"
msgstr ""
-#: libraries/config/messages.inc.php:491
-msgid "These are Edit, Copy and Delete links."
+#: libraries/config/messages.inc.php:490
+msgid "Show views in tree"
msgstr ""
#: libraries/config/messages.inc.php:492
-msgid "Where to show the table row links"
+msgid "Whether to show views under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:493
-msgid "Whether to show row links even in the absence of a unique key."
+msgid "Show functions in tree"
msgstr ""
-#: libraries/config/messages.inc.php:494
-msgid "Show row links anyway"
+#: libraries/config/messages.inc.php:495
+msgid "Whether to show functions under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:496
-msgid "Use natural order for sorting table and database names."
+msgid "Show procedures in tree"
msgstr ""
-#: libraries/config/messages.inc.php:497
-msgid "Natural order"
-msgstr ""
-
-#: libraries/config/messages.inc.php:498 libraries/config/messages.inc.php:529
-#: libraries/config/messages.inc.php:531
-msgid "Use only icons, only text or both."
+#: libraries/config/messages.inc.php:498
+msgid "Whether to show procedures under database in the navigation tree"
msgstr ""
#: libraries/config/messages.inc.php:499
-msgid "Table navigation bar"
+msgid "Show events in tree"
msgstr ""
#: libraries/config/messages.inc.php:501
+msgid "Whether to show events under database in the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid "Maximum number of recently used tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Maximum number of favorite tables; set 0 to disable."
+msgstr ""
+
+#: libraries/config/messages.inc.php:506
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "These are Edit, Copy and Delete links."
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:510
+msgid "Whether to show row links even in the absence of a unique key."
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Show row links anyway"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid "Use natural order for sorting table and database names."
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515 libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:548
+msgid "Use only icons, only text or both."
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
msgid "Use GZip output buffering for increased speed in HTTP transfers."
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:519
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:521
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise."
msgstr ""
-#: libraries/config/messages.inc.php:507
+#: libraries/config/messages.inc.php:524
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:526
msgid "Use persistent connections to MySQL databases."
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:527
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:529
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found."
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:534
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:536
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected."
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:540
msgid "Server/library difference warning"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:542
msgid ""
"Disable the default warning that is displayed on the Structure page if "
"column names in a table are reserved MySQL words."
msgstr ""
-#: libraries/config/messages.inc.php:528
+#: libraries/config/messages.inc.php:545
msgid "MySQL reserved word warning"
msgstr ""
-#: libraries/config/messages.inc.php:530
+#: libraries/config/messages.inc.php:547
msgid "How to display the menu tabs"
msgstr ""
-#: libraries/config/messages.inc.php:532
+#: libraries/config/messages.inc.php:549
msgid "How to display various action links"
msgstr ""
-#: libraries/config/messages.inc.php:533
+#: libraries/config/messages.inc.php:550
msgid "Disallow BLOB and BINARY columns from editing."
msgstr ""
-#: libraries/config/messages.inc.php:534
+#: libraries/config/messages.inc.php:551
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:536
+#: libraries/config/messages.inc.php:553
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:540
+#: libraries/config/messages.inc.php:557
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:542
+#: libraries/config/messages.inc.php:559
msgid "How many queries are kept in history."
msgstr ""
-#: libraries/config/messages.inc.php:543
+#: libraries/config/messages.inc.php:560
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:545
+#: libraries/config/messages.inc.php:562
msgid "Select which functions will be used for character set conversion."
msgstr ""
-#: libraries/config/messages.inc.php:546
+#: libraries/config/messages.inc.php:563
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:548
+#: libraries/config/messages.inc.php:565
msgid "When browsing tables, the sorting of each table is remembered."
msgstr ""
-#: libraries/config/messages.inc.php:549
+#: libraries/config/messages.inc.php:566
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:550
+#: libraries/config/messages.inc.php:567
msgid "Default sort order for tables with a primary key."
msgstr ""
-#: libraries/config/messages.inc.php:551
+#: libraries/config/messages.inc.php:568
msgid "Primary key default sort order"
msgstr ""
-#: libraries/config/messages.inc.php:553
+#: libraries/config/messages.inc.php:570
msgid ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature."
msgstr ""
-#: libraries/config/messages.inc.php:554
+#: libraries/config/messages.inc.php:571
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:556
+#: libraries/config/messages.inc.php:573
msgid "Grid editing: trigger action"
msgstr ""
-#: libraries/config/messages.inc.php:557
+#: libraries/config/messages.inc.php:574
msgid "Relational display"
msgstr ""
-#: libraries/config/messages.inc.php:558
+#: libraries/config/messages.inc.php:575
msgid "For display Options"
msgstr ""
-#: libraries/config/messages.inc.php:559
+#: libraries/config/messages.inc.php:576
msgid "Grid editing: save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:560
+#: libraries/config/messages.inc.php:577
msgid "Directory where exports can be saved on server."
msgstr ""
-#: libraries/config/messages.inc.php:561
+#: libraries/config/messages.inc.php:578
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:562
+#: libraries/config/messages.inc.php:579
msgid "Leave blank if not used."
msgstr ""
-#: libraries/config/messages.inc.php:563
+#: libraries/config/messages.inc.php:580
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:564
+#: libraries/config/messages.inc.php:581
msgid "Leave blank for defaults."
msgstr ""
-#: libraries/config/messages.inc.php:565
+#: libraries/config/messages.inc.php:582
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:566
+#: libraries/config/messages.inc.php:583
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:567
+#: libraries/config/messages.inc.php:584
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:568
+#: libraries/config/messages.inc.php:585
msgid "Session timezone"
msgstr ""
-#: libraries/config/messages.inc.php:569
+#: libraries/config/messages.inc.php:586
msgid ""
"Sets the effective timezone; possibly different than the one from your "
"database server"
msgstr ""
-#: libraries/config/messages.inc.php:571
+#: libraries/config/messages.inc.php:588
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth."
msgstr ""
-#: libraries/config/messages.inc.php:572
+#: libraries/config/messages.inc.php:589
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:574
+#: libraries/config/messages.inc.php:591
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)."
msgstr ""
-#: libraries/config/messages.inc.php:578
+#: libraries/config/messages.inc.php:595
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:579
+#: libraries/config/messages.inc.php:596
msgid "Authentication method to use."
msgstr ""
-#: libraries/config/messages.inc.php:580 setup/frames/index.inc.php:163
+#: libraries/config/messages.inc.php:597 setup/frames/index.inc.php:163
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:582
+#: libraries/config/messages.inc.php:599
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:585
+#: libraries/config/messages.inc.php:602
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:587
+#: libraries/config/messages.inc.php:604
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:590
+#: libraries/config/messages.inc.php:607
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:591
+#: libraries/config/messages.inc.php:608
msgid "Compress connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:592
+#: libraries/config/messages.inc.php:609
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:594
+#: libraries/config/messages.inc.php:611
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure."
msgstr ""
-#: libraries/config/messages.inc.php:595
+#: libraries/config/messages.inc.php:612
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:596
+#: libraries/config/messages.inc.php:613
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:598
+#: libraries/config/messages.inc.php:615
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]."
msgstr ""
-#: libraries/config/messages.inc.php:601
+#: libraries/config/messages.inc.php:618
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:603
+#: libraries/config/messages.inc.php:620
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host."
msgstr ""
-#: libraries/config/messages.inc.php:606
+#: libraries/config/messages.inc.php:623
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:608
+#: libraries/config/messages.inc.php:625
msgid ""
"An alternate port to connect to the host that holds the configuration "
"storage; leave blank to use the default port, or the already defined port, "
"if the controlhost equals host."
msgstr ""
-#: libraries/config/messages.inc.php:612
+#: libraries/config/messages.inc.php:629
msgid "Control port"
msgstr ""
-#: libraries/config/messages.inc.php:614
+#: libraries/config/messages.inc.php:631
msgid "Hide databases matching regular expression (PCRE)."
msgstr ""
-#: libraries/config/messages.inc.php:615
+#: libraries/config/messages.inc.php:632
msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:616
+#: libraries/config/messages.inc.php:633
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:617
+#: libraries/config/messages.inc.php:634
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:619
+#: libraries/config/messages.inc.php:636
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:622
+#: libraries/config/messages.inc.php:639
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:623
+#: libraries/config/messages.inc.php:640
msgid "Hostname where MySQL server is running."
msgstr ""
-#: libraries/config/messages.inc.php:624
+#: libraries/config/messages.inc.php:641
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:625
+#: libraries/config/messages.inc.php:642
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:627
+#: libraries/config/messages.inc.php:644
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed."
msgstr ""
-#: libraries/config/messages.inc.php:631
+#: libraries/config/messages.inc.php:648
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:632
+#: libraries/config/messages.inc.php:649
msgid "QBE saved searches table"
msgstr ""
-#: libraries/config/messages.inc.php:634
+#: libraries/config/messages.inc.php:651
msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:637
+#: libraries/config/messages.inc.php:654
msgid "Central columns table"
msgstr ""
-#: libraries/config/messages.inc.php:639
+#: libraries/config/messages.inc.php:656
msgid ""
"Leave blank for no central columns support, suggested: "
"[kbd]pma__central_columns[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:642
+#: libraries/config/messages.inc.php:659
msgid "Try to connect without password."
msgstr ""
-#: libraries/config/messages.inc.php:643
+#: libraries/config/messages.inc.php:660
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:645
+#: libraries/config/messages.inc.php:662
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 "
"[kbd]'my_db'[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:649
+#: libraries/config/messages.inc.php:666
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:650 libraries/config/messages.inc.php:743
+#: libraries/config/messages.inc.php:667 libraries/config/messages.inc.php:760
msgid "Leave empty if not using config auth."
msgstr ""
-#: libraries/config/messages.inc.php:651
+#: libraries/config/messages.inc.php:668
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:653
+#: libraries/config/messages.inc.php:670
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:655
+#: libraries/config/messages.inc.php:672
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:657
+#: libraries/config/messages.inc.php:674
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:661
+#: libraries/config/messages.inc.php:678
#: libraries/display_create_database.lib.php:31
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:663
+#: libraries/config/messages.inc.php:680
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:664
+#: libraries/config/messages.inc.php:681
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:666
+#: libraries/config/messages.inc.php:683
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:669
+#: libraries/config/messages.inc.php:686
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:671
+#: libraries/config/messages.inc.php:688
msgid ""
"Leave blank for no \"persistent\" favorite tables across sessions, "
"suggested: [kbd]pma__favorite[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:674
+#: libraries/config/messages.inc.php:691
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Favorites table"
msgstr "%s टेबल"
-#: libraries/config/messages.inc.php:676
+#: libraries/config/messages.inc.php:693
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:680
+#: libraries/config/messages.inc.php:697
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:682
+#: libraries/config/messages.inc.php:699
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example."
msgstr ""
-#: libraries/config/messages.inc.php:685
+#: libraries/config/messages.inc.php:702
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:686
+#: libraries/config/messages.inc.php:703
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:688
+#: libraries/config/messages.inc.php:705
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
-#: libraries/config/messages.inc.php:689
+#: libraries/config/messages.inc.php:706
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:690
+#: libraries/config/messages.inc.php:707
msgid "Enable SSL for connection to MySQL server."
msgstr ""
-#: libraries/config/messages.inc.php:691
+#: libraries/config/messages.inc.php:708
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:693
+#: libraries/config/messages.inc.php:710
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:695
+#: libraries/config/messages.inc.php:712
msgid "Designer and PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:697
+#: libraries/config/messages.inc.php:714
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:700
+#: libraries/config/messages.inc.php:717
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:702
+#: libraries/config/messages.inc.php:719
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:705
+#: libraries/config/messages.inc.php:722
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:707
+#: libraries/config/messages.inc.php:724
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:710
+#: libraries/config/messages.inc.php:727
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:712
+#: libraries/config/messages.inc.php:729
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:715
+#: libraries/config/messages.inc.php:732
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:717
+#: libraries/config/messages.inc.php:734
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:720
+#: libraries/config/messages.inc.php:737
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:722
+#: libraries/config/messages.inc.php:739
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:723
+#: libraries/config/messages.inc.php:740
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:725
+#: libraries/config/messages.inc.php:742
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:728
+#: libraries/config/messages.inc.php:745
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:730
+#: libraries/config/messages.inc.php:747
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:734
+#: libraries/config/messages.inc.php:751
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:735
+#: libraries/config/messages.inc.php:752
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:736
+#: libraries/config/messages.inc.php:753
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:737
+#: libraries/config/messages.inc.php:754
msgid ""
"Both this table and the user groups table are required to enable the "
"configurable menus feature; leaving either one of them blank will disable "
"this feature, suggested: [kbd]pma__users[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:738
+#: libraries/config/messages.inc.php:755
msgid "Users table"
msgstr ""
-#: libraries/config/messages.inc.php:739
+#: libraries/config/messages.inc.php:756
msgid ""
"Both this table and the users table are required to enable the configurable "
"menus feature; leaving either one of them blank will disable this feature, "
"suggested: [kbd]pma__usergroups[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:740
+#: libraries/config/messages.inc.php:757
msgid "User groups table"
msgstr ""
-#: libraries/config/messages.inc.php:741
+#: libraries/config/messages.inc.php:758
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:742
+#: libraries/config/messages.inc.php:759
msgid "Hidden navigation items table"
msgstr ""
-#: libraries/config/messages.inc.php:744
+#: libraries/config/messages.inc.php:761
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:745
+#: libraries/config/messages.inc.php:762
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:746
+#: libraries/config/messages.inc.php:763
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:747
+#: libraries/config/messages.inc.php:764
msgid "Whether a user should be displayed a \"show all (rows)\" button."
msgstr ""
-#: libraries/config/messages.inc.php:748
+#: libraries/config/messages.inc.php:765
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:749
+#: libraries/config/messages.inc.php:766
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly."
msgstr ""
-#: libraries/config/messages.inc.php:750
+#: libraries/config/messages.inc.php:767
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:751
+#: libraries/config/messages.inc.php:768
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:752
+#: libraries/config/messages.inc.php:769
msgid "Show or hide a column displaying the comments for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:753
+#: libraries/config/messages.inc.php:770
#, fuzzy
#| msgid "Table comments:"
msgid "Show table comments"
msgstr "टेबलको टिप्पणीहरु:"
-#: libraries/config/messages.inc.php:754
+#: libraries/config/messages.inc.php:771
msgid "Show or hide a column displaying the Creation timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:755
+#: libraries/config/messages.inc.php:772
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:756
+#: libraries/config/messages.inc.php:773
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:757
+#: libraries/config/messages.inc.php:774
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:758
+#: libraries/config/messages.inc.php:775
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables."
msgstr ""
-#: libraries/config/messages.inc.php:759
+#: libraries/config/messages.inc.php:776
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:760
+#: libraries/config/messages.inc.php:777
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:761
+#: libraries/config/messages.inc.php:778
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:762
+#: libraries/config/messages.inc.php:779
msgid "Display the function fields in edit/insert mode."
msgstr ""
-#: libraries/config/messages.inc.php:763
+#: libraries/config/messages.inc.php:780
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:764
+#: libraries/config/messages.inc.php:781
msgid "Whether to show hint or not."
msgstr ""
-#: libraries/config/messages.inc.php:765
+#: libraries/config/messages.inc.php:782
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:766
+#: libraries/config/messages.inc.php:783
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output."
msgstr ""
-#: libraries/config/messages.inc.php:767
+#: libraries/config/messages.inc.php:784
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:768
+#: libraries/config/messages.inc.php:785
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:769
+#: libraries/config/messages.inc.php:786
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
-#: libraries/config/messages.inc.php:770
+#: libraries/config/messages.inc.php:787
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:771
+#: libraries/config/messages.inc.php:788
msgid ""
"Defines whether the query box should stay on-screen after its submission."
msgstr ""
-#: libraries/config/messages.inc.php:772 libraries/sql_query_form.lib.php:357
+#: libraries/config/messages.inc.php:789 libraries/sql_query_form.lib.php:357
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:773
+#: libraries/config/messages.inc.php:790
msgid "Allow to display database and table statistics (eg. space usage)."
msgstr ""
-#: libraries/config/messages.inc.php:774
+#: libraries/config/messages.inc.php:791
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:775
+#: libraries/config/messages.inc.php:792
msgid ""
"Mark used tables and make it possible to show databases with locked tables."
msgstr ""
-#: libraries/config/messages.inc.php:776
+#: libraries/config/messages.inc.php:793
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:781
+#: libraries/config/messages.inc.php:798
msgid ""
"Disable the default warning that is displayed on the main page if Suhosin is "
"detected."
msgstr ""
-#: libraries/config/messages.inc.php:782
+#: libraries/config/messages.inc.php:799
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:783
+#: libraries/config/messages.inc.php:800
msgid ""
"Disable the default warning that is displayed on the main page if the value "
"of the PHP setting session.gc_maxlifetime is less than the value of "
"`LoginCookieValidity`."
msgstr ""
-#: libraries/config/messages.inc.php:785
+#: libraries/config/messages.inc.php:802
msgid "Login cookie validity warning"
msgstr ""
-#: libraries/config/messages.inc.php:787
+#: libraries/config/messages.inc.php:804
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:788
+#: libraries/config/messages.inc.php:805
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:789
+#: libraries/config/messages.inc.php:806
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2)."
msgstr ""
-#: libraries/config/messages.inc.php:790
+#: libraries/config/messages.inc.php:807
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:791
+#: libraries/config/messages.inc.php:808
msgid "Title of browser window when a database is selected."
msgstr ""
-#: libraries/config/messages.inc.php:793
+#: libraries/config/messages.inc.php:810
msgid "Title of browser window when nothing is selected."
msgstr ""
-#: libraries/config/messages.inc.php:794
+#: libraries/config/messages.inc.php:811
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:795
+#: libraries/config/messages.inc.php:812
msgid "Title of browser window when a server is selected."
msgstr ""
-#: libraries/config/messages.inc.php:797
+#: libraries/config/messages.inc.php:814
msgid "Title of browser window when a table is selected."
msgstr ""
-#: libraries/config/messages.inc.php:799
+#: libraries/config/messages.inc.php:816
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -7208,52 +7269,52 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]."
msgstr ""
-#: libraries/config/messages.inc.php:800
+#: libraries/config/messages.inc.php:817
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:801
+#: libraries/config/messages.inc.php:818
msgid "Directory on server where you can upload files for import."
msgstr ""
-#: libraries/config/messages.inc.php:802
+#: libraries/config/messages.inc.php:819
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:803
+#: libraries/config/messages.inc.php:820
msgid "Allow for searching inside the entire database."
msgstr ""
-#: libraries/config/messages.inc.php:804
+#: libraries/config/messages.inc.php:821
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:805
+#: libraries/config/messages.inc.php:822
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right."
msgstr ""
-#: libraries/config/messages.inc.php:806
+#: libraries/config/messages.inc.php:823
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:807 setup/frames/index.inc.php:312
+#: libraries/config/messages.inc.php:824 setup/frames/index.inc.php:312
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:808
+#: libraries/config/messages.inc.php:825
msgid "Enables check for latest version on main phpMyAdmin page."
msgstr ""
-#: libraries/config/messages.inc.php:809 setup/lib/index.lib.php:117
+#: libraries/config/messages.inc.php:826 setup/lib/index.lib.php:117
#: setup/lib/index.lib.php:134 setup/lib/index.lib.php:147
#: setup/lib/index.lib.php:159 setup/lib/index.lib.php:167
#: setup/lib/index.lib.php:174
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:810
+#: libraries/config/messages.inc.php:827
msgid ""
"The url of the proxy to be used when retrieving the information about the "
"latest version of phpMyAdmin or when submitting error reports. You need this "
@@ -7261,80 +7322,80 @@ msgid ""
"the internet. The format is: \"hostname:portnumber\"."
msgstr ""
-#: libraries/config/messages.inc.php:811
+#: libraries/config/messages.inc.php:828
msgid "Proxy url"
msgstr ""
-#: libraries/config/messages.inc.php:812
+#: libraries/config/messages.inc.php:829
msgid ""
"The username for authenticating with the proxy. By default, no "
"authentication is performed. If a username is supplied, Basic Authentication "
"will be performed. No other types of authentication are currently supported."
msgstr ""
-#: libraries/config/messages.inc.php:813
+#: libraries/config/messages.inc.php:830
msgid "Proxy username"
msgstr ""
-#: libraries/config/messages.inc.php:814
+#: libraries/config/messages.inc.php:831
msgid "The password for authenticating with the proxy."
msgstr ""
-#: libraries/config/messages.inc.php:815
+#: libraries/config/messages.inc.php:832
msgid "Proxy password"
msgstr ""
-#: libraries/config/messages.inc.php:817
+#: libraries/config/messages.inc.php:834
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations."
msgstr ""
-#: libraries/config/messages.inc.php:818
+#: libraries/config/messages.inc.php:835
msgid "ZIP"
msgstr ""
-#: libraries/config/messages.inc.php:819
+#: libraries/config/messages.inc.php:836
msgid "Enter your public key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:820
+#: libraries/config/messages.inc.php:837
msgid "Public key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:821
+#: libraries/config/messages.inc.php:838
msgid "Enter your private key for your domain reCaptcha service."
msgstr ""
-#: libraries/config/messages.inc.php:822
+#: libraries/config/messages.inc.php:839
msgid "Private key for reCaptcha"
msgstr ""
-#: libraries/config/messages.inc.php:824
+#: libraries/config/messages.inc.php:841
msgid "Choose the default action when sending error reports."
msgstr ""
-#: libraries/config/messages.inc.php:825
+#: libraries/config/messages.inc.php:842
msgid "Send error reports"
msgstr ""
-#: libraries/config/messages.inc.php:827
+#: libraries/config/messages.inc.php:844
msgid ""
"Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines "
"will be inserted with Shift+Enter."
msgstr ""
-#: libraries/config/messages.inc.php:828
+#: libraries/config/messages.inc.php:845
msgid "Enter executes queries in console"
msgstr ""
-#: libraries/config/messages.inc.php:831
+#: libraries/config/messages.inc.php:848
msgid ""
"Enable Zero Configuration mode which lets you setup phpMyAdmin configuration "
"storage tables automatically."
msgstr ""
-#: libraries/config/messages.inc.php:834
+#: libraries/config/messages.inc.php:851
msgid "Enable Zero Configuration mode"
msgstr ""
@@ -7358,44 +7419,44 @@ msgstr ""
msgid "Signon authentication"
msgstr ""
-#: libraries/config/setup.forms.php:264
-#: libraries/config/user_preferences.forms.php:166
+#: libraries/config/setup.forms.php:272
+#: libraries/config/user_preferences.forms.php:173
msgid "CSV using LOAD DATA"
msgstr ""
-#: libraries/config/setup.forms.php:273 libraries/config/setup.forms.php:372
-#: libraries/config/user_preferences.forms.php:174
-#: libraries/config/user_preferences.forms.php:272
+#: libraries/config/setup.forms.php:281 libraries/config/setup.forms.php:380
+#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/user_preferences.forms.php:279
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: libraries/config/setup.forms.php:280
-#: libraries/config/user_preferences.forms.php:181
+#: libraries/config/setup.forms.php:288
+#: libraries/config/user_preferences.forms.php:188
msgid "Quick"
msgstr ""
-#: libraries/config/setup.forms.php:284
-#: libraries/config/user_preferences.forms.php:185
+#: libraries/config/setup.forms.php:292
+#: libraries/config/user_preferences.forms.php:192
msgid "Custom"
msgstr ""
-#: libraries/config/setup.forms.php:308
-#: libraries/config/user_preferences.forms.php:208
+#: libraries/config/setup.forms.php:316
+#: libraries/config/user_preferences.forms.php:215
msgid "Database export options"
msgstr ""
-#: libraries/config/setup.forms.php:344
-#: libraries/config/user_preferences.forms.php:244
+#: libraries/config/setup.forms.php:352
+#: libraries/config/user_preferences.forms.php:251
msgid "CSV for MS Excel"
msgstr ""
-#: libraries/config/setup.forms.php:367
-#: libraries/config/user_preferences.forms.php:267
+#: libraries/config/setup.forms.php:375
+#: libraries/config/user_preferences.forms.php:274
msgid "Microsoft Word 2000"
msgstr ""
-#: libraries/config/setup.forms.php:376
-#: libraries/config/user_preferences.forms.php:276
+#: libraries/config/setup.forms.php:384
+#: libraries/config/user_preferences.forms.php:283
msgid "OpenDocument Text"
msgstr ""
@@ -7424,7 +7485,7 @@ msgid ""
"consider installing the mysqli extension."
msgstr ""
-#: libraries/db_designer.lib.php:116
+#: libraries/db_designer.lib.php:117
msgid "Could not load schema plugins, please check your installation!"
msgstr ""
@@ -7489,7 +7550,7 @@ msgstr ""
msgid "Number of columns"
msgstr ""
-#: libraries/display_export.inc.php:36
+#: libraries/display_export.inc.php:37
msgid "Could not load export plugins, please check your installation!"
msgstr ""
@@ -7532,62 +7593,62 @@ msgstr ""
msgid "Format:"
msgstr ""
-#: libraries/display_export.lib.php:277
+#: libraries/display_export.lib.php:288
msgid "Format-specific options:"
msgstr ""
-#: libraries/display_export.lib.php:280
+#: libraries/display_export.lib.php:291
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
-#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:374
+#: libraries/display_export.lib.php:302 libraries/display_import.lib.php:374
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_export.lib.php:327
+#: libraries/display_export.lib.php:338
msgid "Rows:"
msgstr ""
-#: libraries/display_export.lib.php:335
+#: libraries/display_export.lib.php:346
msgid "Dump some row(s)"
msgstr ""
-#: libraries/display_export.lib.php:350
+#: libraries/display_export.lib.php:361
msgid "Row to begin at:"
msgstr ""
-#: libraries/display_export.lib.php:367
+#: libraries/display_export.lib.php:378
msgid "Dump all rows"
msgstr ""
-#: libraries/display_export.lib.php:383 libraries/display_export.lib.php:642
+#: libraries/display_export.lib.php:394 libraries/display_export.lib.php:681
msgid "Output:"
msgstr ""
-#: libraries/display_export.lib.php:392 libraries/display_export.lib.php:427
+#: libraries/display_export.lib.php:403 libraries/display_export.lib.php:438
#, php-format
msgid "Save on server in the directory %s"
msgstr ""
-#: libraries/display_export.lib.php:457
+#: libraries/display_export.lib.php:468
msgid "File name template:"
msgstr ""
-#: libraries/display_export.lib.php:459
+#: libraries/display_export.lib.php:470
msgid "@SERVER@ will become the server name"
msgstr ""
-#: libraries/display_export.lib.php:461
+#: libraries/display_export.lib.php:472
msgid ", @DATABASE@ will become the database name"
msgstr ""
-#: libraries/display_export.lib.php:463
+#: libraries/display_export.lib.php:474
msgid ", @TABLE@ will become the table name"
msgstr ""
-#: libraries/display_export.lib.php:469
+#: libraries/display_export.lib.php:480
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
@@ -7595,64 +7656,72 @@ msgid ""
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-#: libraries/display_export.lib.php:526
+#: libraries/display_export.lib.php:537
msgid "use this for future exports"
msgstr ""
-#: libraries/display_export.lib.php:541 libraries/display_import.lib.php:179
+#: libraries/display_export.lib.php:552 libraries/display_import.lib.php:179
#: libraries/display_import.lib.php:194 libraries/sql_query_form.lib.php:491
msgid "Character set of the file:"
msgstr ""
-#: libraries/display_export.lib.php:585
+#: libraries/display_export.lib.php:596
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:593
+#: libraries/display_export.lib.php:604
msgid "zipped"
msgstr ""
-#: libraries/display_export.lib.php:600
+#: libraries/display_export.lib.php:611
msgid "gzipped"
msgstr ""
-#: libraries/display_export.lib.php:627
+#: libraries/display_export.lib.php:638
msgid "View output as text"
msgstr ""
-#: libraries/display_export.lib.php:653 libraries/display_export.lib.php:768
+#: libraries/display_export.lib.php:660
+msgid "Export databases as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:662
+msgid "Export tables as separate files"
+msgstr ""
+
+#: libraries/display_export.lib.php:692 libraries/display_export.lib.php:814
msgid "Rename exported databases/tables/columns"
msgstr ""
-#: libraries/display_export.lib.php:674
+#: libraries/display_export.lib.php:713
msgid "Save output to a file"
msgstr ""
-#: libraries/display_export.lib.php:701
+#: libraries/display_export.lib.php:746
msgid "Skip tables larger than"
msgstr ""
-#: libraries/display_export.lib.php:795
+#: libraries/display_export.lib.php:841
msgid "Select database"
msgstr ""
-#: libraries/display_export.lib.php:797
+#: libraries/display_export.lib.php:843
msgid "Select table"
msgstr ""
-#: libraries/display_export.lib.php:813
+#: libraries/display_export.lib.php:859
msgid "New database name"
msgstr ""
-#: libraries/display_export.lib.php:837
+#: libraries/display_export.lib.php:883
msgid "New table name"
msgstr ""
-#: libraries/display_export.lib.php:847
+#: libraries/display_export.lib.php:893
msgid "Old column name"
msgstr ""
-#: libraries/display_export.lib.php:848
+#: libraries/display_export.lib.php:894
msgid "New column name"
msgstr ""
@@ -8206,7 +8275,7 @@ msgid "Create an index on %s columns"
msgstr ""
#: libraries/insert_edit.lib.php:227
-#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:39
+#: libraries/navigation/Nodes/Node_DatabaseChild.class.php:48
#: templates/designer/table_list.phtml:40
msgid "Hide"
msgstr ""
@@ -8338,11 +8407,6 @@ msgstr ""
msgid "To"
msgstr ""
-#: libraries/mult_submits.lib.php:366 libraries/mult_submits.lib.php:399
-#: libraries/sql_query_form.lib.php:407
-msgid "Submit"
-msgstr ""
-
#: libraries/mult_submits.lib.php:386
msgid "Add table prefix:"
msgstr ""
@@ -8555,22 +8619,26 @@ msgid "An error has occurred while loading the navigation display"
msgstr ""
#: libraries/navigation/Navigation.class.php:192
-msgid "Events:"
+msgid "Groups:"
msgstr ""
#: libraries/navigation/Navigation.class.php:193
-msgid "Functions:"
+msgid "Events:"
msgstr ""
#: libraries/navigation/Navigation.class.php:194
-msgid "Procedures:"
+msgid "Functions:"
msgstr ""
#: libraries/navigation/Navigation.class.php:195
-msgid "Tables:"
+msgid "Procedures:"
msgstr ""
#: libraries/navigation/Navigation.class.php:196
+msgid "Tables:"
+msgstr ""
+
+#: libraries/navigation/Navigation.class.php:197
msgid "Views:"
msgstr ""
@@ -8594,33 +8662,33 @@ msgstr ""
msgid "Reload navigation panel"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:708
+#: libraries/navigation/NavigationTree.class.php:738
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:891
+#: libraries/navigation/NavigationTree.class.php:921
#, php-format
msgid "%s result found"
msgid_plural "%s results found"
msgstr[0] ""
msgstr[1] ""
-#: libraries/navigation/NavigationTree.class.php:1301
+#: libraries/navigation/NavigationTree.class.php:1331
msgid "Filter databases by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1303
-#: libraries/navigation/NavigationTree.class.php:1337
+#: libraries/navigation/NavigationTree.class.php:1333
+#: libraries/navigation/NavigationTree.class.php:1367
msgid "Clear fast filter"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1336
+#: libraries/navigation/NavigationTree.class.php:1366
msgid "Filter by name or regex"
msgstr ""
-#: libraries/navigation/NavigationTree.class.php:1362
+#: libraries/navigation/NavigationTree.class.php:1392
msgid "Collapse all"
msgstr ""
@@ -8654,7 +8722,7 @@ msgstr ""
msgid "Database operations"
msgstr ""
-#: libraries/navigation/Nodes/Node_Database.class.php:645
+#: libraries/navigation/Nodes/Node_Database.class.php:660
msgid "Show hidden items"
msgstr ""
@@ -9790,26 +9858,26 @@ msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:120
#: libraries/plugins/import/ImportCsv.class.php:135
-#: libraries/plugins/import/ImportCsv.class.php:142
-#: libraries/plugins/import/ImportCsv.class.php:151
+#: libraries/plugins/import/ImportCsv.class.php:146
+#: libraries/plugins/import/ImportCsv.class.php:155
#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:198
+#: libraries/plugins/import/ImportCsv.class.php:202
#, php-format
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:291
-#: libraries/plugins/import/ImportCsv.class.php:630
+#: libraries/plugins/import/ImportCsv.class.php:295
+#: libraries/plugins/import/ImportCsv.class.php:634
#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
-#: libraries/plugins/import/ImportCsv.class.php:503
+#: libraries/plugins/import/ImportCsv.class.php:507
#, php-format
msgid "Invalid column count in CSV input on line %d."
msgstr ""
@@ -10138,47 +10206,47 @@ msgstr ""
msgid "Formats text as XML with syntax highlighting."
msgstr ""
-#: libraries/pmd_common.php:517
+#: libraries/pmd_common.php:538
msgid "Error: relation already exists."
msgstr ""
-#: libraries/pmd_common.php:563
+#: libraries/pmd_common.php:584
msgid "FOREIGN KEY relation has been added."
msgstr ""
-#: libraries/pmd_common.php:568
+#: libraries/pmd_common.php:589
msgid "Error: FOREIGN KEY relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:573
+#: libraries/pmd_common.php:594
msgid "Error: Missing index on column(s)."
msgstr ""
-#: libraries/pmd_common.php:577
+#: libraries/pmd_common.php:598
msgid "Error: Relational features are disabled!"
msgstr ""
-#: libraries/pmd_common.php:597
+#: libraries/pmd_common.php:618
msgid "Internal relation has been added."
msgstr ""
-#: libraries/pmd_common.php:602
+#: libraries/pmd_common.php:623
msgid "Error: Internal relation could not be added!"
msgstr ""
-#: libraries/pmd_common.php:643
+#: libraries/pmd_common.php:664
msgid "FOREIGN KEY relation has been removed."
msgstr ""
-#: libraries/pmd_common.php:649
+#: libraries/pmd_common.php:670
msgid "Error: FOREIGN KEY relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:676
+#: libraries/pmd_common.php:697
msgid "Error: Internal relation could not be removed!"
msgstr ""
-#: libraries/pmd_common.php:680
+#: libraries/pmd_common.php:701
msgid "Internal relation has been removed."
msgstr ""
@@ -10263,54 +10331,58 @@ msgstr ""
msgid "Managing Central list of columns"
msgstr ""
-#: libraries/relation.lib.php:321
+#: libraries/relation.lib.php:324
+msgid "Remembering Designer Settings"
+msgstr ""
+
+#: libraries/relation.lib.php:332
msgid "Quick steps to setup advanced features:"
msgstr ""
-#: libraries/relation.lib.php:327
+#: libraries/relation.lib.php:338
#, php-format
msgid "Create the needed tables with the %screate_tables.sql."
msgstr ""
-#: libraries/relation.lib.php:335
+#: libraries/relation.lib.php:346
msgid "Create a pma user and give access to these tables."
msgstr ""
-#: libraries/relation.lib.php:340
+#: libraries/relation.lib.php:351
msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-#: libraries/relation.lib.php:348
+#: libraries/relation.lib.php:359
msgid "Re-login to phpMyAdmin to load the updated configuration file."
msgstr ""
-#: libraries/relation.lib.php:1566
+#: libraries/relation.lib.php:1585
msgid "no description"
msgstr ""
-#: libraries/relation.lib.php:1765
+#: libraries/relation.lib.php:1784
msgid ""
"You do not have necessary privileges to create a database named "
"'phpmyadmin'. You may go to 'Operations' tab of any database to set up the "
"phpMyAdmin configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1880
+#: libraries/relation.lib.php:1900
#, php-format
msgid ""
"%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin "
"configuration storage there."
msgstr ""
-#: libraries/relation.lib.php:1888
+#: libraries/relation.lib.php:1908
#, php-format
msgid ""
"%sCreate%s the phpMyAdmin configuration storage in the current database."
msgstr ""
-#: libraries/relation.lib.php:1896
+#: libraries/relation.lib.php:1916
#, php-format
msgid "%sCreate%s missing phpMyAdmin configuration storage tables."
msgstr ""
@@ -11027,7 +11099,7 @@ msgstr ""
msgid "Ignoring unsupported language code."
msgstr ""
-#: libraries/select_server.lib.php:44 libraries/select_server.lib.php:49
+#: libraries/select_server.lib.php:43 libraries/select_server.lib.php:48
msgid "Current Server:"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index ae12af179c..d1dd9dbba0 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,11 +3,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2015-06-22 08:04-0400\n"
+"POT-Creation-Date: 2015-06-28 06:20-0400\n"
"PO-Revision-Date: 2015-06-23 16:27+0200\n"
"Last-Translator: dingo thirteen
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
@@ -2329,26 +2372,26 @@ msgstr ""
"